From a599317624fb8428eb64cf719affcdd075f5c9d5 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 25 Jul 2019 19:49:28 +0200 Subject: LibCore: Introduce a C_OBJECT macro. This macro goes at the top of every CObject-derived class like so: class SomeClass : public CObject { C_OBJECT(SomeClass) public: ... At the moment, all it does is create an override for the class_name() getter but in the future this will be used to automatically insert member functions into these classes. --- Libraries/LibGUI/GTextEditor.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Libraries/LibGUI/GTextEditor.h') diff --git a/Libraries/LibGUI/GTextEditor.h b/Libraries/LibGUI/GTextEditor.h index fcac07ab15..22364e69cd 100644 --- a/Libraries/LibGUI/GTextEditor.h +++ b/Libraries/LibGUI/GTextEditor.h @@ -78,6 +78,7 @@ private: }; class GTextEditor : public GScrollableWidget { + C_OBJECT(GTextEditor) public: enum Type { MultiLine, @@ -134,8 +135,6 @@ public: Function on_return_pressed; Function on_escape_pressed; - virtual const char* class_name() const override { return "GTextEditor"; } - GAction& undo_action() { return *m_undo_action; } GAction& redo_action() { return *m_redo_action; } GAction& cut_action() { return *m_cut_action; } -- cgit v1.2.3