diff options
Diffstat (limited to 'LibGUI/GLabel.cpp')
-rw-r--r-- | LibGUI/GLabel.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/LibGUI/GLabel.cpp b/LibGUI/GLabel.cpp index 2962d04051..c674a674a6 100644 --- a/LibGUI/GLabel.cpp +++ b/LibGUI/GLabel.cpp @@ -7,6 +7,12 @@ GLabel::GLabel(GWidget* parent) { } +GLabel::GLabel(const String& text, GWidget* parent) + : GWidget(parent) + , m_text(text) +{ +} + GLabel::~GLabel() { } |