summaryrefslogtreecommitdiff
path: root/src/gui/inventorywindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-09-12 18:15:26 +0300
committerAndrei Karas <akaras@inbox.ru>2012-09-12 18:41:45 +0300
commit715ee6e1c954d3b89165c69245ed045da2b2f6b0 (patch)
tree6526311cfdee01b86844061a2da9c0094cfe1d12 /src/gui/inventorywindow.cpp
parentf9530d88fb476f80dc8a240924fa88209e5c29ea (diff)
downloadplus-715ee6e1c954d3b89165c69245ed045da2b2f6b0.tar.gz
plus-715ee6e1c954d3b89165c69245ed045da2b2f6b0.tar.bz2
plus-715ee6e1c954d3b89165c69245ed045da2b2f6b0.tar.xz
plus-715ee6e1c954d3b89165c69245ed045da2b2f6b0.zip
Remove from inventory some labels.
Diffstat (limited to 'src/gui/inventorywindow.cpp')
-rw-r--r--src/gui/inventorywindow.cpp20
1 files changed, 5 insertions, 15 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp
index 0f1a0ed9e..e0538224a 100644
--- a/src/gui/inventorywindow.cpp
+++ b/src/gui/inventorywindow.cpp
@@ -105,9 +105,6 @@ InventoryWindow::InventoryWindow(Inventory *const inventory):
mStoreButton(nullptr),
mRetrieveButton(nullptr),
mCloseButton(nullptr),
- mWeightLabel(nullptr),
- mSlotsLabel(new Label(_("Slots:"))),
- mFilterLabel(new Label(_("Filter:"))),
mWeightBar(nullptr),
mSlotsBar(new ProgressBar(0.0f, 100, 20, Theme::PROG_INVY_SLOTS)),
mFilter(nullptr),
@@ -186,18 +183,13 @@ InventoryWindow::InventoryWindow(Inventory *const inventory):
mOutfitButton = new Button(_("Outfits"), "outfit", this);
mShopButton = new Button(_("Shop"), "shop", this);
mEquipmentButton = new Button(_("Equipment"), "equipment", this);
-
- mWeightLabel = new Label(_("Weight:"));
mWeightBar = new ProgressBar(0.0f, 100, 20, Theme::PROG_WEIGHT);
- place(0, 0, mWeightLabel, 1).setPadding(3);
- place(1, 0, mWeightBar, 3);
- place(4, 0, mSlotsLabel, 1).setPadding(3);
- mSlotsBarCell = &place(5, 0, mSlotsBar, 4);
+ place(0, 0, mWeightBar, 4);
+ mSlotsBarCell = &place(4, 0, mSlotsBar, 5);
mSortDropDownCell = &place(9, 0, mSortDropDown, 2);
- place(0, 1, mFilterLabel, 1).setPadding(3);
- mFilterCell = &place(1, 1, mFilter, 9).setPadding(3);
+ mFilterCell = &place(0, 1, mFilter, 10).setPadding(3);
mNameFilterCell = &place(9, 1, mNameFilter, 2);
place(0, 2, invenScroll, 11).setPadding(3);
@@ -216,12 +208,10 @@ InventoryWindow::InventoryWindow(Inventory *const inventory):
mRetrieveButton = new Button(_("Retrieve"), "retrieve", this);
mCloseButton = new Button(_("Close"), "close", this);
- place(0, 0, mSlotsLabel).setPadding(3);
- mSlotsBarCell = &place(1, 0, mSlotsBar, 5);
+ mSlotsBarCell = &place(0, 0, mSlotsBar, 6);
mSortDropDownCell = &place(6, 0, mSortDropDown, 1);
- place(0, 1, mFilterLabel, 1).setPadding(3);
- mFilterCell = &place(1, 1, mFilter, 6).setPadding(3);
+ mFilterCell = &place(0, 1, mFilter, 7).setPadding(3);
mNameFilterCell = &place(6, 1, mNameFilter, 1);
place(0, 2, invenScroll, 7, 4);