diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-15 15:36:35 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-15 16:04:25 +0100 |
commit | 8fa2d7104a2ecc5d864fb04ba74f8fe18b3611d7 (patch) | |
tree | 31ed343a85374c02fe56f268209c7db131364765 /Widgets/Button.h | |
parent | 396a32835b40bdc5617d81f849556edf5459468e (diff) | |
download | serenity-8fa2d7104a2ecc5d864fb04ba74f8fe18b3611d7.zip |
More VFS cleanup.
Diffstat (limited to 'Widgets/Button.h')
-rw-r--r-- | Widgets/Button.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Widgets/Button.h b/Widgets/Button.h index 09ad9e0458..ed0327196c 100644 --- a/Widgets/Button.h +++ b/Widgets/Button.h @@ -18,7 +18,7 @@ private: virtual void mouseDownEvent(MouseEvent&) override; virtual void mouseUpEvent(MouseEvent&) override; - virtual const char* className() const override { return "Button"; } + virtual const char* class_name() const override { return "Button"; } String m_caption; bool m_beingPressed { false }; |