diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-16 20:40:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-16 20:40:13 +0300 |
commit | cd25589ba6143591389095eb25a260e350edc699 (patch) | |
tree | f89bf5fda1cbd82e5303963ad3e08338aae55de4 /src/gui/windows | |
parent | c6fa5a35e1ed48b6dcb8cc83c7de9563fdca8a71 (diff) | |
download | plus-cd25589ba6143591389095eb25a260e350edc699.tar.gz plus-cd25589ba6143591389095eb25a260e350edc699.tar.bz2 plus-cd25589ba6143591389095eb25a260e350edc699.tar.xz plus-cd25589ba6143591389095eb25a260e350edc699.zip |
Build buyingstoremodelistener only if eathena support enabled.
Diffstat (limited to 'src/gui/windows')
-rw-r--r-- | src/gui/windows/shopwindow.cpp | 4 | ||||
-rw-r--r-- | src/gui/windows/shopwindow.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/windows/shopwindow.cpp b/src/gui/windows/shopwindow.cpp index 8f858b0fe..32580454d 100644 --- a/src/gui/windows/shopwindow.cpp +++ b/src/gui/windows/shopwindow.cpp @@ -88,7 +88,9 @@ ShopWindow::ShopWindow() : SelectionListener(), VendingModeListener(), VendingSlotsListener(), +#ifdef EATHENA_SUPPORT BuyingStoreModeListener(), +#endif BuyingStoreSlotsListener(), // TRANSLATORS: shop window button mCloseButton(new Button(this, _("Close"), "close", this)), @@ -1078,6 +1080,7 @@ void ShopWindow::buyingStoreSlotsChanged(const int slots) updateButtonsAndLabels(); } +#ifdef EATHENA_SUPPORT void ShopWindow::buyingStoreEnabled(const bool b) { mEnableBuyingStore = b; @@ -1086,3 +1089,4 @@ void ShopWindow::buyingStoreEnabled(const bool b) mBuyShopSize = 0; updateButtonsAndLabels(); } +#endif diff --git a/src/gui/windows/shopwindow.h b/src/gui/windows/shopwindow.h index 313d3b4fb..8cf1cecd5 100644 --- a/src/gui/windows/shopwindow.h +++ b/src/gui/windows/shopwindow.h @@ -51,7 +51,9 @@ class ShopWindow final : public Window, public SelectionListener, public VendingModeListener, public VendingSlotsListener, +#ifdef EATHENA_SUPPORT public BuyingStoreModeListener, +#endif public BuyingStoreSlotsListener { public: @@ -151,7 +153,9 @@ class ShopWindow final : public Window, void vendingEnabled(const bool b) override final; +#ifdef EATHENA_SUPPORT void buyingStoreEnabled(const bool b) override final; +#endif void setShopName(const std::string &name); |