diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-19 23:22:46 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-19 23:22:46 +0100 |
commit | 7e5b81fe4807f89868af61ab27b53f003d607167 (patch) | |
tree | 219fa209115c2708d56be06205aff43b01279cf3 /Userland | |
parent | b75ee4aacbf41539d73f494da5aba468310b71b9 (diff) | |
download | serenity-7e5b81fe4807f89868af61ab27b53f003d607167.zip |
Make a SharedGraphics directory for classes shared between Kernel and LibGUI.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/guitest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/guitest.cpp b/Userland/guitest.cpp index 6b2caf0b7c..b923eb8f9e 100644 --- a/Userland/guitest.cpp +++ b/Userland/guitest.cpp @@ -6,8 +6,8 @@ #include <fcntl.h> #include <assert.h> #include <Kernel/Syscall.h> -#include <Widgets/GraphicsBitmap.h> -#include <Widgets/Painter.h> +#include <SharedGraphics/GraphicsBitmap.h> +#include <SharedGraphics/Painter.h> #include "gui.h" static void paint(GraphicsBitmap& bitmap, int width, int height); |