diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2011-10-21 20:54:54 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2011-10-23 10:55:29 +0200 |
commit | 9c5791d3e3b413d8b703f1530f67de8936a3434c (patch) | |
tree | dd718ab5e09a0128f94509fed3c8b241c23e8dfa /src/gui/widgets/itemcontainer.cpp | |
parent | 659b1eac4fc9e733fcfd233020bac78701c30640 (diff) | |
download | mana-9c5791d3e3b413d8b703f1530f67de8936a3434c.tar.gz mana-9c5791d3e3b413d8b703f1530f67de8936a3434c.tar.bz2 mana-9c5791d3e3b413d8b703f1530f67de8936a3434c.tar.xz mana-9c5791d3e3b413d8b703f1530f67de8936a3434c.zip |
Fixed a certain class of Doxygen warnings
All cases of documentation for non-existing parameters are now fixed.
Also marked a few getters as 'const', removed some superfluous 'inline'
keywords and removed the unused 'forceQuantity' option from
ItemContainer.
Reviewed-by: Yohann Ferreira
Diffstat (limited to 'src/gui/widgets/itemcontainer.cpp')
-rw-r--r-- | src/gui/widgets/itemcontainer.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/widgets/itemcontainer.cpp b/src/gui/widgets/itemcontainer.cpp index 546a16d2..d88a5747 100644 --- a/src/gui/widgets/itemcontainer.cpp +++ b/src/gui/widgets/itemcontainer.cpp @@ -52,7 +52,7 @@ static const int BOX_WIDTH = 35; static const int BOX_HEIGHT = 43; -ItemContainer::ItemContainer(Inventory *inventory, bool forceQuantity): +ItemContainer::ItemContainer(Inventory *inventory): mInventory(inventory), mGridColumns(1), mGridRows(1), @@ -60,7 +60,6 @@ ItemContainer::ItemContainer(Inventory *inventory, bool forceQuantity): mHighlightedIndex(-1), mLastUsedSlot(-1), mSelectionStatus(SEL_NONE), - mForceQuantity(forceQuantity), mSwapItems(false), mDescItems(false) { @@ -159,7 +158,7 @@ void ItemContainer::draw(gcn::Graphics *graphics) } // Draw item caption std::string caption; - if (item->getQuantity() > 1 || mForceQuantity) + if (item->getQuantity() > 1) caption = toString(item->getQuantity()); else if (item->isEquipped()) caption = "Eq."; |