diff options
Diffstat (limited to 'src/gui/textpopup.h')
-rw-r--r-- | src/gui/textpopup.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/gui/textpopup.h b/src/gui/textpopup.h index 7d6893b9f..02cf89d6f 100644 --- a/src/gui/textpopup.h +++ b/src/gui/textpopup.h @@ -28,13 +28,9 @@ #include <guichan/mouselistener.hpp> +class Label; class TextBox; -namespace gcn -{ - class Label; -} - /** * A popup that displays information about an item. */ @@ -78,9 +74,9 @@ class TextPopup final : public Popup void mouseMoved(gcn::MouseEvent &mouseEvent) override; private: - gcn::Label *mText1; - gcn::Label *mText2; - gcn::Label *mText3; + Label *mText1; + Label *mText2; + Label *mText3; }; #endif // TEXTPOPUP_H |