summaryrefslogtreecommitdiff
path: root/LibGUI/GMessageBox.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-08 22:10:00 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-08 22:10:00 +0200
commit364769c11c926ff610db5a483d5463fdd7ff50fb (patch)
tree7bea26614230e5496f4bd96ff5e08a441b2828f8 /LibGUI/GMessageBox.h
parentde98b2770bd32651e8472809dd67882ee6680808 (diff)
downloadserenity-364769c11c926ff610db5a483d5463fdd7ff50fb.zip
LibGUI: Add some missing class_name() overrides to GDialog and subclasses.
Diffstat (limited to 'LibGUI/GMessageBox.h')
-rw-r--r--LibGUI/GMessageBox.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/LibGUI/GMessageBox.h b/LibGUI/GMessageBox.h
index 352079c7a6..5ccfcc46aa 100644
--- a/LibGUI/GMessageBox.h
+++ b/LibGUI/GMessageBox.h
@@ -16,6 +16,8 @@ public:
static void show(const String& text, const String& title, Type type = Type::None, CObject* parent = nullptr);
+ virtual const char* class_name() const override { return "GMessageBox"; }
+
private:
void build();
RetainPtr<GraphicsBitmap> icon() const;