diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-27 21:18:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-27 21:44:17 +0300 |
commit | 7c79aa2b8e484319e3e511fa21db6d2448347024 (patch) | |
tree | 3c4fb4e72414dd8c0d93401a6bf2cc86b65a34a0 /src/inventory.h | |
parent | de476bb95242e10c833394ef007728072eabe60f (diff) | |
download | plus-7c79aa2b8e484319e3e511fa21db6d2448347024.tar.gz plus-7c79aa2b8e484319e3e511fa21db6d2448347024.tar.bz2 plus-7c79aa2b8e484319e3e511fa21db6d2448347024.tar.xz plus-7c79aa2b8e484319e3e511fa21db6d2448347024.zip |
Add const to more classes.
Diffstat (limited to 'src/inventory.h')
-rw-r--r-- | src/inventory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inventory.h b/src/inventory.h index 74f3e695d..6cfcc3f86 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -37,7 +37,7 @@ class InventoryListener virtual ~InventoryListener() { } - virtual void slotsChanged(Inventory* inventory) = 0; + virtual void slotsChanged(Inventory *const inventory) = 0; protected: InventoryListener() |