summaryrefslogtreecommitdiff
path: root/src/gui/speechbubble.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-04-17 11:31:47 +0300
committerAndrei Karas <akaras@inbox.ru>2012-04-17 11:31:47 +0300
commit693879649420c0997bfb29bea7f5752f6d9ac526 (patch)
tree01d6c56532d561385edbfe2ad0235df6c5a58c5f /src/gui/speechbubble.cpp
parent8df35828d69f3debd89557a74c26359a8b249f87 (diff)
downloadplus-693879649420c0997bfb29bea7f5752f6d9ac526.tar.gz
plus-693879649420c0997bfb29bea7f5752f6d9ac526.tar.bz2
plus-693879649420c0997bfb29bea7f5752f6d9ac526.tar.xz
plus-693879649420c0997bfb29bea7f5752f6d9ac526.zip
Move keyboard handling from guichan to own classes.
Diffstat (limited to 'src/gui/speechbubble.cpp')
-rw-r--r--src/gui/speechbubble.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp
index 877715137..6dc528a0d 100644
--- a/src/gui/speechbubble.cpp
+++ b/src/gui/speechbubble.cpp
@@ -28,12 +28,11 @@
#include "gui/gui.h"
#include "gui/theme.h"
+#include "gui/widgets/label.h"
#include "gui/widgets/textbox.h"
#include <guichan/font.hpp>
-#include <guichan/widgets/label.hpp>
-
#include "debug.h"
SpeechBubble::SpeechBubble():
@@ -43,7 +42,7 @@ SpeechBubble::SpeechBubble():
setMinWidth(29);
setMinHeight(29);
- mCaption = new gcn::Label;
+ mCaption = new Label;
mCaption->setFont(boldFont);
mSpeechBox = new TextBox;