From e4abfb651d51670fcf85093b55189065c151cc14 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 17 Apr 2015 18:26:38 +0300 Subject: Add eathena defines into inventorytype enum. --- src/enums/inventorytype.h | 2 ++ src/gui/popups/popupmenu.cpp | 2 ++ src/gui/widgets/itemcontainer.cpp | 4 ++++ src/gui/windows/inventorywindow.cpp | 8 ++++++++ src/inventory.cpp | 2 ++ 5 files changed, 18 insertions(+) diff --git a/src/enums/inventorytype.h b/src/enums/inventorytype.h index 136a80734..a492de2ce 100644 --- a/src/enums/inventorytype.h +++ b/src/enums/inventorytype.h @@ -32,7 +32,9 @@ namespace InventoryType CART, TRADE, NPC, +#ifdef EATHENA_SUPPORT VENDING, +#endif TYPE_END }; } // namespace InventoryType diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index a458cf17d..9c808b40c 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -1710,7 +1710,9 @@ void PopupMenu::showPopup(Window *const parent, case InventoryType::CART: case InventoryType::TRADE: case InventoryType::NPC: +#ifdef EATHENA_SUPPORT case InventoryType::VENDING: +#endif case InventoryType::TYPE_END: default: break; diff --git a/src/gui/widgets/itemcontainer.cpp b/src/gui/widgets/itemcontainer.cpp index 9728c0e7f..6d2c72c5c 100644 --- a/src/gui/widgets/itemcontainer.cpp +++ b/src/gui/widgets/itemcontainer.cpp @@ -422,7 +422,9 @@ void ItemContainer::mousePressed(MouseEvent &event) src = DRAGDROP_SOURCE_CART; break; default: +#ifdef EATHENA_SUPPORT case InventoryType::VENDING: +#endif case InventoryType::TYPE_END: break; } @@ -522,7 +524,9 @@ void ItemContainer::mouseReleased(MouseEvent &event) dst = DRAGDROP_SOURCE_CART; break; default: +#ifdef EATHENA_SUPPORT case InventoryType::VENDING: +#endif case InventoryType::TYPE_END: break; } diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp index a2c08f819..28367d2c0 100644 --- a/src/gui/windows/inventorywindow.cpp +++ b/src/gui/windows/inventorywindow.cpp @@ -118,7 +118,9 @@ InventoryWindow::InventoryWindow(Inventory *const inventory) : case InventoryType::INVENTORY: case InventoryType::TRADE: case InventoryType::NPC: +#ifdef EATHENA_SUPPORT case InventoryType::VENDING: +#endif case InventoryType::TYPE_END: default: mSortDropDown->setSelected(config.getIntValue( @@ -299,7 +301,9 @@ InventoryWindow::InventoryWindow(Inventory *const inventory) : default: case InventoryType::TRADE: case InventoryType::NPC: +#ifdef EATHENA_SUPPORT case InventoryType::VENDING: +#endif case InventoryType::TYPE_END: break; }; @@ -356,7 +360,9 @@ void InventoryWindow::storeSortOrder() const case InventoryType::INVENTORY: case InventoryType::TRADE: case InventoryType::NPC: +#ifdef EATHENA_SUPPORT case InventoryType::VENDING: +#endif case InventoryType::TYPE_END: default: config.setValue("inventorySortOrder", @@ -800,7 +806,9 @@ void InventoryWindow::close() default: case InventoryType::TRADE: case InventoryType::NPC: +#ifdef EATHENA_SUPPORT case InventoryType::VENDING: +#endif case InventoryType::TYPE_END: break; } diff --git a/src/inventory.cpp b/src/inventory.cpp index 7f05a2472..c2e9daf1e 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -291,7 +291,9 @@ std::string Inventory::getName() const switch (mType) { case InventoryType::INVENTORY: +#ifdef EATHENA_SUPPORT case InventoryType::VENDING: +#endif case InventoryType::TYPE_END: default: { -- cgit v1.2.3-60-g2f50