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/buydialog.h | |
parent | 0b3aafe2859d9ea1c4009eed8a87f69c41cbc14b (diff) | |
download | plus-066488a6f4d086b57f4fe32e8799c207552cccb7.tar.gz plus-066488a6f4d086b57f4fe32e8799c207552cccb7.tar.bz2 plus-066488a6f4d086b57f4fe32e8799c207552cccb7.tar.xz plus-066488a6f4d086b57f4fe32e8799c207552cccb7.zip |
Add theming to labels.
New theme file: label.xml
Parameters: padding
Diffstat (limited to 'src/gui/buydialog.h')
-rw-r--r-- | src/gui/buydialog.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/buydialog.h b/src/gui/buydialog.h index 352f2a7ff..04d4205d7 100644 --- a/src/gui/buydialog.h +++ b/src/gui/buydialog.h @@ -31,12 +31,12 @@ class ShopItems; class ShopListBox; class IntTextField; +class Label; class ListBox; namespace gcn { class Button; - class Label; class ScrollArea; class Slider; } @@ -136,10 +136,10 @@ class BuyDialog final : public Window, public gcn::ActionListener, gcn::Button *mDecreaseButton; ShopListBox *mShopItemList; gcn::ScrollArea *mScrollArea; - gcn::Label *mMoneyLabel; - gcn::Label *mQuantityLabel; + Label *mMoneyLabel; + Label *mQuantityLabel; gcn::Slider *mSlider; - gcn::Label *mAmountLabel; + Label *mAmountLabel; IntTextField *mAmountField; ShopItems *mShopItems; |