diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-24 20:42:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-24 20:42:22 +0300 |
commit | b7bbb09d62b55bed26d432a6a2af9831c6ec9143 (patch) | |
tree | 895bf1e0d842088282f79bbc423ca1f825880254 /src/gui/windows/inventorywindow.cpp | |
parent | 3920b2449e3e55c396b3a5a46f37d965d71de42e (diff) | |
download | plus-b7bbb09d62b55bed26d432a6a2af9831c6ec9143.tar.gz plus-b7bbb09d62b55bed26d432a6a2af9831c6ec9143.tar.bz2 plus-b7bbb09d62b55bed26d432a6a2af9831c6ec9143.tar.xz plus-b7bbb09d62b55bed26d432a6a2af9831c6ec9143.zip |
Change ItemType into strong typed enum.
Diffstat (limited to 'src/gui/windows/inventorywindow.cpp')
-rw-r--r-- | src/gui/windows/inventorywindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp index 881e10c1a..5485bd98a 100644 --- a/src/gui/windows/inventorywindow.cpp +++ b/src/gui/windows/inventorywindow.cpp @@ -1047,7 +1047,8 @@ void InventoryWindow::combineItems(const int index1, if (!item2) return; - if (item1->getType() != ItemType::CARD) + // IT_CARD + if (item1->getType() != 6) { const Item *tmpItem = item1; item1 = item2; |