1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:07:35 +00:00

LibGUI: Allow subclassing of GLabel.

This commit is contained in:
Andreas Kling 2019-04-26 14:16:17 +02:00
parent ba2e97aa52
commit 104af4a5dc

View file

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