summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/GFrame.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-18 10:15:00 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-18 10:18:16 +0200
commit1c0669f010b6859721b5a4594b1e38d4098e43f4 (patch)
tree4acdff111c4f491b62b1eb293117cd3605520bd2 /Libraries/LibGUI/GFrame.h
parent2167f6023509078fe4ab1961c684a239bd18e588 (diff)
downloadserenity-1c0669f010b6859721b5a4594b1e38d4098e43f4.zip
LibDraw: Introduce (formerly known as SharedGraphics.)
Instead of LibGUI and WindowServer building their own copies of the drawing and graphics code, let's it in a separate LibDraw library. This avoids building the code twice, and will encourage better separation of concerns. :^)
Diffstat (limited to 'Libraries/LibGUI/GFrame.h')
-rw-r--r--Libraries/LibGUI/GFrame.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGUI/GFrame.h b/Libraries/LibGUI/GFrame.h
index b6757e4d8d..84b07413f6 100644
--- a/Libraries/LibGUI/GFrame.h
+++ b/Libraries/LibGUI/GFrame.h
@@ -1,7 +1,7 @@
#pragma once
#include <LibGUI/GWidget.h>
-#include <SharedGraphics/StylePainter.h>
+#include <LibDraw/StylePainter.h>
class GFrame : public GWidget {
public: