summaryrefslogtreecommitdiff
path: root/src/gui/itemcontainer.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-17 20:33:28 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-17 20:33:28 +0100
commit366e0b120624cb382fd3b233b8ec7a75c31a2da4 (patch)
tree8cd1d65a19e490c2ce74bc2c2ef6ebe358b4d1c1 /src/gui/itemcontainer.h
parente02c372c50b3d8b498661a05183f460ae6ae395f (diff)
downloadmana-client-366e0b120624cb382fd3b233b8ec7a75c31a2da4.tar.gz
mana-client-366e0b120624cb382fd3b233b8ec7a75c31a2da4.tar.bz2
mana-client-366e0b120624cb382fd3b233b8ec7a75c31a2da4.tar.xz
mana-client-366e0b120624cb382fd3b233b8ec7a75c31a2da4.zip
Got rid of const where it does not make much sense
It's not that useful to make variables that are passed by value const. In the declaration it is even completely ignored.
Diffstat (limited to 'src/gui/itemcontainer.h')
-rw-r--r--src/gui/itemcontainer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/itemcontainer.h b/src/gui/itemcontainer.h
index 71fcc5d0..5ad140be 100644
--- a/src/gui/itemcontainer.h
+++ b/src/gui/itemcontainer.h
@@ -137,7 +137,7 @@ class ItemContainer : public gcn::Widget,
* @param posY The Y Coordinate position.
* @return The slot index on success, -1 on failure.
*/
- int getSlotIndex(const int posX, const int posY) const;
+ int getSlotIndex(int posX, int posY) const;
Inventory *mInventory;
Image *mSelImg;