diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-10 17:01:54 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-10 17:01:54 +0200 |
commit | 2f1f51b8aba4165c7accb2b2d133ce6c0c9f7ddf (patch) | |
tree | 305283a3244dd7a9cc20e4a8f4388d328225368d /LibGUI/GWidget.h | |
parent | b8062f69d86e0dee9990cbffe627091faf7cc0ba (diff) | |
download | serenity-2f1f51b8aba4165c7accb2b2d133ce6c0c9f7ddf.zip |
LibCore: Move LibGUI/GObject to LibCore/CObject.
Diffstat (limited to 'LibGUI/GWidget.h')
-rw-r--r-- | LibGUI/GWidget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGUI/GWidget.h b/LibGUI/GWidget.h index 2b6c652f25..0d322e4ab0 100644 --- a/LibGUI/GWidget.h +++ b/LibGUI/GWidget.h @@ -2,7 +2,7 @@ #include <LibCore/CElapsedTimer.h> #include <LibGUI/GEvent.h> -#include <LibGUI/GObject.h> +#include <LibCore/CObject.h> #include <SharedGraphics/Rect.h> #include <SharedGraphics/Color.h> #include <SharedGraphics/Font.h> @@ -18,7 +18,7 @@ enum class Orientation { Horizontal, Vertical }; enum class HorizontalDirection { Left, Right }; enum class VerticalDirection { Up, Down }; -class GWidget : public GObject { +class GWidget : public CObject { public: explicit GWidget(GWidget* parent = nullptr); virtual ~GWidget() override; |