diff options
Diffstat (limited to 'src/gui/speechbubble.h')
-rw-r--r-- | src/gui/speechbubble.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gui/speechbubble.h b/src/gui/speechbubble.h index 246ea8bd8..428210f85 100644 --- a/src/gui/speechbubble.h +++ b/src/gui/speechbubble.h @@ -28,13 +28,9 @@ #include "gui/widgets/popup.h" +class Label; class TextBox; -namespace gcn -{ - class Label; -} - class SpeechBubble final : public Popup { public: @@ -59,7 +55,7 @@ class SpeechBubble final : public Popup private: std::string mText; - gcn::Label *mCaption; + Label *mCaption; TextBox *mSpeechBox; }; |