From 45460ca58b3cbf6d92fe3cac1311bbfc9d00e841 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 5 May 2015 17:15:59 +0300 Subject: Build parts of inventorytype.h only if supported server enabled. --- src/gui/windows/itemamountwindow.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/gui/windows/itemamountwindow.cpp') diff --git a/src/gui/windows/itemamountwindow.cpp b/src/gui/windows/itemamountwindow.cpp index f37e88c46..2933c57a1 100644 --- a/src/gui/windows/itemamountwindow.cpp +++ b/src/gui/windows/itemamountwindow.cpp @@ -74,18 +74,10 @@ void ItemAmountWindow::finish(const Item *const item, inventoryHandler->moveItem2(InventoryType::INVENTORY, item->getInvIndex(), amount, InventoryType::STORAGE); break; - case CartAdd: - inventoryHandler->moveItem2(InventoryType::INVENTORY, - item->getInvIndex(), amount, InventoryType::CART); - break; case StoreRemove: inventoryHandler->moveItem2(InventoryType::STORAGE, item->getInvIndex(), amount, InventoryType::INVENTORY); break; - case CartRemove: - inventoryHandler->moveItem2(InventoryType::CART, - item->getInvIndex(), amount, InventoryType::INVENTORY); - break; case ShopBuyAdd: if (shopWindow) shopWindow->addBuyItem(item, amount, price); @@ -95,6 +87,14 @@ void ItemAmountWindow::finish(const Item *const item, shopWindow->addSellItem(item, amount, price); break; #ifdef EATHENA_SUPPORT + case CartAdd: + inventoryHandler->moveItem2(InventoryType::INVENTORY, + item->getInvIndex(), amount, InventoryType::CART); + break; + case CartRemove: + inventoryHandler->moveItem2(InventoryType::CART, + item->getInvIndex(), amount, InventoryType::INVENTORY); + break; case MailAdd: if (mailEditWindow) mailEditWindow->addItem(item, amount); -- cgit v1.2.3-60-g2f50