diff options
Diffstat (limited to 'src/guichan/widgets/label.cpp')
-rw-r--r-- | src/guichan/widgets/label.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guichan/widgets/label.cpp b/src/guichan/widgets/label.cpp index 8879407f7..669898100 100644 --- a/src/guichan/widgets/label.cpp +++ b/src/guichan/widgets/label.cpp @@ -57,13 +57,13 @@ namespace gcn { Label::Label() : - Widget(), + gcn::Widget(), mAlignment(Graphics::LEFT) { } Label::Label(const std::string& caption) : - Widget(), + gcn::Widget(), mCaption(caption), mAlignment(Graphics::LEFT) { |