summaryrefslogtreecommitdiff
path: root/src/guichan/widgets/label.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/guichan/widgets/label.cpp')
-rw-r--r--src/guichan/widgets/label.cpp4
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)
{