summaryrefslogtreecommitdiff
path: root/Widgets/Button.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-11-15 15:36:35 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-11-15 16:04:25 +0100
commit8fa2d7104a2ecc5d864fb04ba74f8fe18b3611d7 (patch)
tree31ed343a85374c02fe56f268209c7db131364765 /Widgets/Button.h
parent396a32835b40bdc5617d81f849556edf5459468e (diff)
downloadserenity-8fa2d7104a2ecc5d864fb04ba74f8fe18b3611d7.zip
More VFS cleanup.
Diffstat (limited to 'Widgets/Button.h')
-rw-r--r--Widgets/Button.h2
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 };