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/Object.h | |
parent | 396a32835b40bdc5617d81f849556edf5459468e (diff) | |
download | serenity-8fa2d7104a2ecc5d864fb04ba74f8fe18b3611d7.zip |
More VFS cleanup.
Diffstat (limited to 'Widgets/Object.h')
-rw-r--r-- | Widgets/Object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Widgets/Object.h b/Widgets/Object.h index f945350b88..4e4f8eb7cc 100644 --- a/Widgets/Object.h +++ b/Widgets/Object.h @@ -11,7 +11,7 @@ public: Object(Object* parent = nullptr); virtual ~Object(); - virtual const char* className() const { return "Object"; } + virtual const char* class_name() const { return "Object"; } virtual void event(Event&); |