diff options
Diffstat (limited to 'src/gui/base/widgets/label.cpp')
-rw-r--r-- | src/gui/base/widgets/label.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/base/widgets/label.cpp b/src/gui/base/widgets/label.cpp index 84ba87d84..d2293a957 100644 --- a/src/gui/base/widgets/label.cpp +++ b/src/gui/base/widgets/label.cpp @@ -76,7 +76,7 @@ namespace gcn { Label::Label(const Widget2 *const widget) : - gcn::Widget(widget), + Widget(widget), mCaption(), mAlignment(Graphics::LEFT) { @@ -84,7 +84,7 @@ namespace gcn Label::Label(const Widget2 *const widget, const std::string& caption) : - gcn::Widget(widget), + Widget(widget), mCaption(caption), mAlignment(Graphics::LEFT) { |