LibGUI: Add some missing class_name() overrides to GDialog and subclasses.

This commit is contained in:
Andreas Kling 2019-05-08 22:10:00 +02:00
commit 364769c11c
Notes: sideshowbarker 2024-07-19 14:11:30 +09:00
4 changed files with 8 additions and 2 deletions

View file

@ -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;