From 5b0c0847eff037dec9e1657a3113754f14c9fe71 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 7 May 2019 23:28:22 +0200 Subject: [PATCH] GSpinBox: Add class_name() override. --- LibGUI/GSpinBox.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LibGUI/GSpinBox.h b/LibGUI/GSpinBox.h index 7bce28ce7f..c32e1d697d 100644 --- a/LibGUI/GSpinBox.h +++ b/LibGUI/GSpinBox.h @@ -21,6 +21,8 @@ public: Function on_change; + virtual const char* class_name() const override { return "GSpinBox"; } + protected: virtual void resize_event(GResizeEvent&) override;