diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-28 16:03:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-28 16:34:59 +0300 |
commit | b96e6eeba6e1511568c8291bd8cb6a6d3706635c (patch) | |
tree | d021843c88d856f86f018547c30f1181290ffcbe /src/gui/windows/shopwindow.h | |
parent | 60859a71dd9794b0216cc7a60146d417e06dbbad (diff) | |
download | ManaVerse-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.tar.gz ManaVerse-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.tar.bz2 ManaVerse-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.tar.xz ManaVerse-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.zip |
Remove define EATHENA_SUPPORT from all code.
Now eathena like support enabled always.
Diffstat (limited to 'src/gui/windows/shopwindow.h')
-rw-r--r-- | src/gui/windows/shopwindow.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gui/windows/shopwindow.h b/src/gui/windows/shopwindow.h index 8bd5e5d2a..3123178e7 100644 --- a/src/gui/windows/shopwindow.h +++ b/src/gui/windows/shopwindow.h @@ -47,12 +47,10 @@ class TabStrip; * \ingroup Interface */ class ShopWindow final : public Window, -#ifdef EATHENA_SUPPORT public VendingModeListener, public VendingSlotsListener, public BuyingStoreModeListener, public BuyingStoreSlotsListener, -#endif public ActionListener, public SelectionListener { @@ -148,7 +146,6 @@ class ShopWindow final : public Window, bool isShopEmpty() const A_WARN_UNUSED; -#ifdef EATHENA_SUPPORT void vendingEnabled(const bool b) override final; void vendingSlotsChanged(const int slots) override final; @@ -158,18 +155,14 @@ class ShopWindow final : public Window, void buyingStoreSlotsChanged(const int slots) override final; void setShopName(const std::string &name); -#endif private: #ifdef TMWA_SUPPORT void startTrade(); #endif - void updateSelection(); -#ifdef EATHENA_SUPPORT void updateShopName(); -#endif typedef std::list<ShopWindow*> DialogList; static DialogList instances; |