diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-19 12:02:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-19 12:02:45 +0300 |
commit | 389f3a580e6641d8486a44f25d3443829f42408f (patch) | |
tree | e61e7e636287a9cade0d0760c456ed0712fdc4e6 /src/net/inventoryhandler.h | |
parent | b5c7e137032d78a70c737cb390c6d729f95c72a2 (diff) | |
download | ManaVerse-389f3a580e6641d8486a44f25d3443829f42408f.tar.gz ManaVerse-389f3a580e6641d8486a44f25d3443829f42408f.tar.bz2 ManaVerse-389f3a580e6641d8486a44f25d3443829f42408f.tar.xz ManaVerse-389f3a580e6641d8486a44f25d3443829f42408f.zip |
Fix virtual overload function closeStorage.
Diffstat (limited to 'src/net/inventoryhandler.h')
-rw-r--r-- | src/net/inventoryhandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/inventoryhandler.h b/src/net/inventoryhandler.h index 8e6cf6f14..d22bcd4e1 100644 --- a/src/net/inventoryhandler.h +++ b/src/net/inventoryhandler.h @@ -69,7 +69,7 @@ class InventoryHandler notfinal virtual Inventory *getStorage() const = 0; - virtual void closeStorage() = 0; + virtual void destroyStorage() = 0; virtual void forgotStorage() = 0; |