diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-28 17:19:56 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-28 17:19:56 +0100 |
commit | 9fa21fa5852fc9b7605d953a3e9f8a9e8bd28864 (patch) | |
tree | 551051e45da768531505855a2df3e3eccd9f3331 /Userland/guitest2.cpp | |
parent | 326c6fd607893af0dd6200815540708bc218145d (diff) | |
download | serenity-9fa21fa5852fc9b7605d953a3e9f8a9e8bd28864.zip |
LibGUI: Add a GPainter class that inherits from Painter.
This gets rid of the last little piece of LibGUI knowledge in Painter.
Diffstat (limited to 'Userland/guitest2.cpp')
-rw-r--r-- | Userland/guitest2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/guitest2.cpp b/Userland/guitest2.cpp index e96be84bd3..b8c9f1bfd1 100644 --- a/Userland/guitest2.cpp +++ b/Userland/guitest2.cpp @@ -8,7 +8,7 @@ #include <time.h> #include <Kernel/Syscall.h> #include <SharedGraphics/GraphicsBitmap.h> -#include <SharedGraphics/Painter.h> +#include <LibGUI/GPainter.h> #include <LibGUI/GWindow.h> #include <LibGUI/GWidget.h> #include <LibGUI/GLabel.h> |