diff options
author | Angelo Castellani <udp.castellani@gmail.com> | 2011-05-19 19:29:58 -0400 |
---|---|---|
committer | Stefan Dombrowski <stefan@uni-bonn.de> | 2011-05-20 17:34:21 +0200 |
commit | 5dbb4826a88e255fe565fc837fe91bf305bd28d0 (patch) | |
tree | 9cb4c004e257bcf7cb3e1146e387e108711e6be0 /src/gui/inventorywindow.cpp | |
parent | f971e8903ae6e7f01adb7b2f252c6482fa258ebb (diff) | |
download | mana-5dbb4826a88e255fe565fc837fe91bf305bd28d0.tar.gz mana-5dbb4826a88e255fe565fc837fe91bf305bd28d0.tar.bz2 mana-5dbb4826a88e255fe565fc837fe91bf305bd28d0.tar.xz mana-5dbb4826a88e255fe565fc837fe91bf305bd28d0.zip |
Fixed 'InventoyListener' typo
Diffstat (limited to 'src/gui/inventorywindow.cpp')
-rw-r--r-- | src/gui/inventorywindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index 4ebcce8b..6a897700 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -143,7 +143,7 @@ InventoryWindow::InventoryWindow(Inventory *inventory): Layout &layout = getLayout(); layout.setRowHeight(2, Layout::AUTO_SET); - mInventory->addInventoyListener(this); + mInventory->addInventoryListener(this); instances.push_back(this); @@ -160,7 +160,7 @@ InventoryWindow::InventoryWindow(Inventory *inventory): InventoryWindow::~InventoryWindow() { instances.remove(this); - mInventory->removeInventoyListener(this); + mInventory->removeInventoryListener(this); if (!isMainInventory()) PlayerInfo::setStorageCount(PlayerInfo::getStorageCount() - 1); |