From 104af4a5dcac79c74be1b8f09aede8453945656a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 26 Apr 2019 14:16:17 +0200 Subject: [PATCH] LibGUI: Allow subclassing of GLabel. --- LibGUI/GLabel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibGUI/GLabel.h b/LibGUI/GLabel.h index 56258145f6..f9097a28c2 100644 --- a/LibGUI/GLabel.h +++ b/LibGUI/GLabel.h @@ -5,7 +5,7 @@ class GraphicsBitmap; -class GLabel final : public GFrame { +class GLabel : public GFrame { public: explicit GLabel(GWidget* parent = nullptr); GLabel(const String& text, GWidget* parent = nullptr);