diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-19 15:15:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-19 16:39:56 +0300 |
commit | 10badd2c0e099c7611f6d23b3973e54f210bc172 (patch) | |
tree | 3689c22c252c2fed2f7e3d4cbd57d330fc2bf839 /src/guichan/widgets/textbox.cpp | |
parent | 876e370925a021bb6731703c3db2db2945f62f85 (diff) | |
download | plus-10badd2c0e099c7611f6d23b3973e54f210bc172.tar.gz plus-10badd2c0e099c7611f6d23b3973e54f210bc172.tar.bz2 plus-10badd2c0e099c7611f6d23b3973e54f210bc172.tar.xz plus-10badd2c0e099c7611f6d23b3973e54f210bc172.zip |
Fix namespace conflicts.
Diffstat (limited to 'src/guichan/widgets/textbox.cpp')
-rw-r--r-- | src/guichan/widgets/textbox.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/guichan/widgets/textbox.cpp b/src/guichan/widgets/textbox.cpp index 1f56ed322..0c8f4451a 100644 --- a/src/guichan/widgets/textbox.cpp +++ b/src/guichan/widgets/textbox.cpp @@ -59,9 +59,9 @@ namespace gcn { TextBox::TextBox() : - Widget(), - MouseListener(), - KeyListener(), + gcn::Widget(), + gcn::MouseListener(), + gcn::KeyListener(), mCaretColumn(0), mCaretRow(0), mEditable(true), @@ -76,9 +76,9 @@ namespace gcn } TextBox::TextBox(const std::string& text) : - Widget(), - MouseListener(), - KeyListener(), + gcn::Widget(), + gcn::MouseListener(), + gcn::KeyListener(), mCaretColumn(0), mCaretRow(0), mEditable(true), |