1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:17:35 +00:00

LibGfx: Rename from LibDraw :^)

This commit is contained in:
Andreas Kling 2020-02-06 12:04:00 +01:00
parent 11580babbf
commit 9ac94d393e
215 changed files with 291 additions and 291 deletions

View file

@ -4,6 +4,6 @@ OBJS = \
PROGRAM = TextEditor
LIB_DEPS = GUI Draw VT IPC Thread Pthread Core
LIB_DEPS = GUI Gfx VT IPC Thread Pthread Core
include ../../Makefile.common

View file

@ -29,7 +29,7 @@
#include <AK/StringBuilder.h>
#include <AK/URL.h>
#include <LibCore/CFile.h>
#include <LibDraw/PNGLoader.h>
#include <LibGfx/PNGLoader.h>
#include <LibGUI/GAboutDialog.h>
#include <LibGUI/GAction.h>
#include <LibGUI/GBoxLayout.h>

View file

@ -25,7 +25,7 @@
*/
#include "TextEditorWidget.h"
#include <LibDraw/PNGLoader.h>
#include <LibGfx/PNGLoader.h>
#include <stdio.h>
int main(int argc, char** argv)