diff options
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index c4416a002..a75a7a12e 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -202,11 +202,8 @@ void Inventory::removeInventoyListener(InventoryListener* const listener) void Inventory::distributeSlotsChangedEvent() { - for (InventoryListenerList::const_iterator i = mInventoryListeners.begin(), - i_end = mInventoryListeners.end(); i != i_end; ++i) - { + FOR_EACH (InventoryListenerList::const_iterator, i, mInventoryListeners) (*i)->slotsChanged(this); - } } Item *Inventory::findItemBySprite(std::string spritePath, |