summaryrefslogtreecommitdiff
path: root/Applications/HexEditor
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-06 12:04:00 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-06 12:04:00 +0100
commit9ac94d393e02c8e725d58affd03b1fd0e0c45552 (patch)
tree7152a9134e30bf1b965c6e8f9e5b8f71098da861 /Applications/HexEditor
parent11580babbfb1b8ae0acab2400f11d905c35642f5 (diff)
downloadserenity-9ac94d393e02c8e725d58affd03b1fd0e0c45552.zip
LibGfx: Rename from LibDraw :^)
Diffstat (limited to 'Applications/HexEditor')
-rw-r--r--Applications/HexEditor/HexEditor.cpp2
-rw-r--r--Applications/HexEditor/HexEditor.h2
-rw-r--r--Applications/HexEditor/HexEditorWidget.cpp2
-rw-r--r--Applications/HexEditor/Makefile2
-rw-r--r--Applications/HexEditor/main.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/Applications/HexEditor/HexEditor.cpp b/Applications/HexEditor/HexEditor.cpp
index 310187e9fd..55e920f096 100644
--- a/Applications/HexEditor/HexEditor.cpp
+++ b/Applications/HexEditor/HexEditor.cpp
@@ -27,7 +27,7 @@
#include "HexEditor.h"
#include <AK/StringBuilder.h>
#include <Kernel/KeyCode.h>
-#include <LibDraw/Palette.h>
+#include <LibGfx/Palette.h>
#include <LibGUI/GAction.h>
#include <LibGUI/GClipboard.h>
#include <LibGUI/GFontDatabase.h>
diff --git a/Applications/HexEditor/HexEditor.h b/Applications/HexEditor/HexEditor.h
index 82fb591a43..05186ab577 100644
--- a/Applications/HexEditor/HexEditor.h
+++ b/Applications/HexEditor/HexEditor.h
@@ -31,7 +31,7 @@
#include <AK/NonnullOwnPtrVector.h>
#include <AK/NonnullRefPtrVector.h>
#include <AK/StdLibExtras.h>
-#include <LibDraw/TextAlignment.h>
+#include <LibGfx/TextAlignment.h>
#include <LibGUI/GScrollableWidget.h>
class HexEditor : public GUI::ScrollableWidget {
diff --git a/Applications/HexEditor/HexEditorWidget.cpp b/Applications/HexEditor/HexEditorWidget.cpp
index e765e3aac1..538ad6bd40 100644
--- a/Applications/HexEditor/HexEditorWidget.cpp
+++ b/Applications/HexEditor/HexEditorWidget.cpp
@@ -28,7 +28,7 @@
#include <AK/Optional.h>
#include <AK/StringBuilder.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>
diff --git a/Applications/HexEditor/Makefile b/Applications/HexEditor/Makefile
index 690ee576f5..8231655955 100644
--- a/Applications/HexEditor/Makefile
+++ b/Applications/HexEditor/Makefile
@@ -5,6 +5,6 @@ OBJS = \
PROGRAM = HexEditor
-LIB_DEPS = GUI Draw IPC Thread Pthread Core
+LIB_DEPS = GUI Gfx IPC Thread Pthread Core
include ../../Makefile.common
diff --git a/Applications/HexEditor/main.cpp b/Applications/HexEditor/main.cpp
index f877cdac3d..f5d1d59794 100644
--- a/Applications/HexEditor/main.cpp
+++ b/Applications/HexEditor/main.cpp
@@ -25,7 +25,7 @@
*/
#include "HexEditorWidget.h"
-#include <LibDraw/PNGLoader.h>
+#include <LibGfx/PNGLoader.h>
#include <stdio.h>
int main(int argc, char** argv)