summaryrefslogtreecommitdiff
path: root/src/inventory.cpp
diff options
context:
space:
mode:
authorAngelo Castellani <udp.castellani@gmail.com>2011-05-19 19:29:58 -0400
committerStefan Dombrowski <stefan@uni-bonn.de>2011-05-20 17:34:21 +0200
commit5dbb4826a88e255fe565fc837fe91bf305bd28d0 (patch)
tree9cb4c004e257bcf7cb3e1146e387e108711e6be0 /src/inventory.cpp
parentf971e8903ae6e7f01adb7b2f252c6482fa258ebb (diff)
downloadmana-client-5dbb4826a88e255fe565fc837fe91bf305bd28d0.tar.gz
mana-client-5dbb4826a88e255fe565fc837fe91bf305bd28d0.tar.bz2
mana-client-5dbb4826a88e255fe565fc837fe91bf305bd28d0.tar.xz
mana-client-5dbb4826a88e255fe565fc837fe91bf305bd28d0.zip
Fixed 'InventoyListener' typo
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r--src/inventory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp
index 3c556f01..25c1ebf7 100644
--- a/src/inventory.cpp
+++ b/src/inventory.cpp
@@ -151,12 +151,12 @@ int Inventory::getLastUsedSlot() const
return -1;
}
-void Inventory::addInventoyListener(InventoryListener* listener)
+void Inventory::addInventoryListener(InventoryListener* listener)
{
mInventoryListeners.push_back(listener);
}
-void Inventory::removeInventoyListener(InventoryListener* listener)
+void Inventory::removeInventoryListener(InventoryListener* listener)
{
mInventoryListeners.remove(listener);
}