summaryrefslogtreecommitdiff
path: root/src/gui/spellpopup.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-14 18:50:27 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-14 18:50:27 +0300
commit066488a6f4d086b57f4fe32e8799c207552cccb7 (patch)
tree2c73d80030ff0da73fc5f5b4b664a34030a51633 /src/gui/spellpopup.h
parent0b3aafe2859d9ea1c4009eed8a87f69c41cbc14b (diff)
downloadmv-066488a6f4d086b57f4fe32e8799c207552cccb7.tar.gz
mv-066488a6f4d086b57f4fe32e8799c207552cccb7.tar.bz2
mv-066488a6f4d086b57f4fe32e8799c207552cccb7.tar.xz
mv-066488a6f4d086b57f4fe32e8799c207552cccb7.zip
Add theming to labels.
New theme file: label.xml Parameters: padding
Diffstat (limited to 'src/gui/spellpopup.h')
-rw-r--r--src/gui/spellpopup.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/gui/spellpopup.h b/src/gui/spellpopup.h
index 51e43d0d5..7e11ba53a 100644
--- a/src/gui/spellpopup.h
+++ b/src/gui/spellpopup.h
@@ -30,13 +30,9 @@
#include <guichan/mouselistener.hpp>
+class Label;
class TextBox;
-namespace gcn
-{
- class Label;
-}
-
/**
* A popup that displays information about an item.
*/
@@ -68,9 +64,9 @@ class SpellPopup final : public Popup
void mouseMoved(gcn::MouseEvent &mouseEvent) override;
private:
- gcn::Label *mItemName;
+ Label *mItemName;
- gcn::Label *mItemComment;
+ Label *mItemComment;
};
#endif // SPELLPOPUP_H