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/popups/beingpopup.cpp | |
parent | 60859a71dd9794b0216cc7a60146d417e06dbbad (diff) | |
download | plus-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.tar.gz plus-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.tar.bz2 plus-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.tar.xz plus-b96e6eeba6e1511568c8291bd8cb6a6d3706635c.zip |
Remove define EATHENA_SUPPORT from all code.
Now eathena like support enabled always.
Diffstat (limited to 'src/gui/popups/beingpopup.cpp')
-rw-r--r-- | src/gui/popups/beingpopup.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gui/popups/beingpopup.cpp b/src/gui/popups/beingpopup.cpp index 3809ed4d2..75b72c732 100644 --- a/src/gui/popups/beingpopup.cpp +++ b/src/gui/popups/beingpopup.cpp @@ -126,7 +126,6 @@ void BeingPopup::show(const int x, const int y, Being *const b) (*it)->setCaption(std::string()); } -#ifdef EATHENA_SUPPORT const ActorTypeT type = b->getType(); if (type == ActorType::Pet) { @@ -167,7 +166,6 @@ void BeingPopup::show(const int x, const int y, Being *const b) } } else -#endif { if (!(b->getPartyName().empty())) { @@ -199,7 +197,6 @@ void BeingPopup::show(const int x, const int y, Being *const b) num ++; } -#ifdef EATHENA_SUPPORT if (!b->getBuyBoard().empty()) { ptr = mLabels[num]; @@ -209,9 +206,7 @@ void BeingPopup::show(const int x, const int y, Being *const b) ptr->adjustSize(); num ++; } -#endif -#ifdef EATHENA_SUPPORT if (!b->getSellBoard().empty()) { ptr = mLabels[num]; @@ -221,7 +216,6 @@ void BeingPopup::show(const int x, const int y, Being *const b) ptr->adjustSize(); num ++; } -#endif if (!b->getComment().empty()) { @@ -244,7 +238,6 @@ void BeingPopup::show(const int x, const int y, Being *const b) num ++; } -#ifdef EATHENA_SUPPORT const ChatObject *const chat = b->getChat(); if (chat) { @@ -255,7 +248,6 @@ void BeingPopup::show(const int x, const int y, Being *const b) ptr->adjustSize(); num ++; } -#endif } ptr = mLabels[num]; // TRANSLATORS: being popup label |