diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-14 18:50:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-14 18:50:27 +0300 |
commit | 066488a6f4d086b57f4fe32e8799c207552cccb7 (patch) | |
tree | 2c73d80030ff0da73fc5f5b4b664a34030a51633 /src/gui/charselectdialog.h | |
parent | 0b3aafe2859d9ea1c4009eed8a87f69c41cbc14b (diff) | |
download | mv-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/charselectdialog.h')
-rw-r--r-- | src/gui/charselectdialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/charselectdialog.h b/src/gui/charselectdialog.h index 91cfa7e43..f12084dc5 100644 --- a/src/gui/charselectdialog.h +++ b/src/gui/charselectdialog.h @@ -34,6 +34,7 @@ #include <guichan/keylistener.hpp> class CharacterDisplay; +class Label; class LocalPlayer; class LoginData; class PlayerBox; @@ -42,7 +43,6 @@ class TextDialog; namespace gcn { class Button; - class Label; } namespace Net @@ -114,8 +114,8 @@ class CharSelectDialog final : public Window, LoginData *mLoginData; - gcn::Label *mAccountNameLabel; - gcn::Label *mLastLoginLabel; + Label *mAccountNameLabel; + Label *mLastLoginLabel; gcn::Button *mSwitchLoginButton; gcn::Button *mChangePasswordButton; |