diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-31 16:37:43 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-31 16:37:43 +0100 |
commit | e04ba0a83c5147bd7dd1be94a8f1f7428d2be4ea (patch) | |
tree | bb4ce4dbf847b64089b5798514f3878eb63b3eff /LibGUI/GObject.h | |
parent | 2dc9c86bad76b56c4d58334a633f78a34e3500bf (diff) | |
download | serenity-e04ba0a83c5147bd7dd1be94a8f1f7428d2be4ea.zip |
Add a simple clock window to guitest2.
This is driven by mousedown events right now, since there are no timers.
Diffstat (limited to 'LibGUI/GObject.h')
-rw-r--r-- | LibGUI/GObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GObject.h b/LibGUI/GObject.h index c4d2679101..d31d3c1a23 100644 --- a/LibGUI/GObject.h +++ b/LibGUI/GObject.h @@ -30,7 +30,7 @@ public: void delete_later(); private: - virtual void timerEvent(GTimerEvent&); + virtual void timer_event(GTimerEvent&); GObject* m_parent { nullptr }; |