1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:47:45 +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

@ -28,7 +28,7 @@
#include "ItemListModel.h"
#include <AK/StringBuilder.h>
#include <LibCore/CDirIterator.h>
#include <LibDraw/PNGLoader.h>
#include <LibGfx/PNGLoader.h>
#include <LibGUI/GAction.h>
#include <LibGUI/GApplication.h>
#include <LibGUI/GBoxLayout.h>

View file

@ -30,8 +30,8 @@
#include <AK/String.h>
#include <AK/Vector.h>
#include <LibCore/CConfigFile.h>
#include <LibDraw/Color.h>
#include <LibDraw/Size.h>
#include <LibGfx/Color.h>
#include <LibGfx/Size.h>
#include <LibGUI/GWidget.h>
#include <LibGUI/GLabel.h>

View file

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

View file

@ -25,7 +25,7 @@
*/
#include "DisplayProperties.h"
#include <LibDraw/PNGLoader.h>
#include <LibGfx/PNGLoader.h>
#include <LibGUI/GAboutDialog.h>
#include <LibGUI/GAction.h>
#include <LibGUI/GApplication.h>