diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-06 20:57:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-06 22:58:35 +0300 |
commit | 4ad3cd45f7a8c3f6d1817705c06223d1a2798a2f (patch) | |
tree | a776928bb1339cdd29eb2e54d50eb3fa6e3448d7 /src/gui/inventorywindow.h | |
parent | 22ed653d8b630c813333d5c73a4ca02dede2a5a5 (diff) | |
download | plus-4ad3cd45f7a8c3f6d1817705c06223d1a2798a2f.tar.gz plus-4ad3cd45f7a8c3f6d1817705c06223d1a2798a2f.tar.bz2 plus-4ad3cd45f7a8c3f6d1817705c06223d1a2798a2f.tar.xz plus-4ad3cd45f7a8c3f6d1817705c06223d1a2798a2f.zip |
Improve constructors in some classes.
Diffstat (limited to 'src/gui/inventorywindow.h')
-rw-r--r-- | src/gui/inventorywindow.h | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/src/gui/inventorywindow.h b/src/gui/inventorywindow.h index fd86db6ea..04ca2067d 100644 --- a/src/gui/inventorywindow.h +++ b/src/gui/inventorywindow.h @@ -162,16 +162,25 @@ class InventoryWindow : public Window, std::string mWeight, mSlots; - gcn::Button *mUseButton, *mDropButton, *mSplitButton, - *mOutfitButton, *mShopButton, *mEquipmentButton, - *mStoreButton, *mRetrieveButton, *mCloseButton; - - gcn::Label *mWeightLabel, *mSlotsLabel, *mFilterLabel; - - ProgressBar *mWeightBar, *mSlotsBar; + gcn::Button *mUseButton; + gcn::Button *mDropButton; + gcn::Button *mSplitButton; + gcn::Button *mOutfitButton; + gcn::Button *mShopButton; + gcn::Button *mEquipmentButton; + gcn::Button *mStoreButton; + gcn::Button *mRetrieveButton; + gcn::Button *mCloseButton; + + gcn::Label *mWeightLabel; + gcn::Label *mSlotsLabel; + gcn::Label *mFilterLabel; + + ProgressBar *mWeightBar; + ProgressBar *mSlotsBar; TabStrip *mFilter; - DropDown *mSortDropDown; SortListModel *mSortModel; + DropDown *mSortDropDown; TextField *mNameFilter; LayoutCell *mSortDropDownCell; LayoutCell *mNameFilterCell; |