summaryrefslogtreecommitdiff
path: root/LibGUI/GWidget.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-10 17:01:54 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-10 17:01:54 +0200
commit2f1f51b8aba4165c7accb2b2d133ce6c0c9f7ddf (patch)
tree305283a3244dd7a9cc20e4a8f4388d328225368d /LibGUI/GWidget.h
parentb8062f69d86e0dee9990cbffe627091faf7cc0ba (diff)
downloadserenity-2f1f51b8aba4165c7accb2b2d133ce6c0c9f7ddf.zip
LibCore: Move LibGUI/GObject to LibCore/CObject.
Diffstat (limited to 'LibGUI/GWidget.h')
-rw-r--r--LibGUI/GWidget.h4
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;