diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-25 20:43:59 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-25 20:43:59 -0700 |
commit | 1702c84521ab707326de720aea0a53136779300d (patch) | |
tree | 1fe03173d44b8c20aeaf745de8dc230f6e8a59d0 /src/gui/inventorywindow.h | |
parent | 2273323d978cd85fb22f4dd3dfe0d018f72241fb (diff) | |
download | mana-1702c84521ab707326de720aea0a53136779300d.tar.gz mana-1702c84521ab707326de720aea0a53136779300d.tar.bz2 mana-1702c84521ab707326de720aea0a53136779300d.tar.xz mana-1702c84521ab707326de720aea0a53136779300d.zip |
Repaired item weight and slot reporting.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/inventorywindow.h')
-rw-r--r-- | src/gui/inventorywindow.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/inventorywindow.h b/src/gui/inventorywindow.h index a1f8b858..da7c1cee 100644 --- a/src/gui/inventorywindow.h +++ b/src/gui/inventorywindow.h @@ -71,13 +71,15 @@ class InventoryWindow : public Window, gcn::ActionListener, ItemContainer *mItems; std::string mWeight; + std::string mSlots; + std::string mUsedSlots; std::string mTotalWeight; std::string mMaxWeight; gcn::Button *mUseButton, *mDropButton; gcn::ScrollArea *mInvenScroll; gcn::Label *mWeightLabel; - int mSize; + int mMaxSlots; bool mItemDesc; }; |