diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-16 13:13:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-16 13:13:48 +0300 |
commit | 5b8f189276b3883253de31d5e7bbbf897d34c85b (patch) | |
tree | c3e6028d800e4caf4acb7ca3f45ba2e63e8df26b /src/gui/popups | |
parent | 47d811c90a4655b69f1846c16150efebbfa4ccfa (diff) | |
download | plus-5b8f189276b3883253de31d5e7bbbf897d34c85b.tar.gz plus-5b8f189276b3883253de31d5e7bbbf897d34c85b.tar.bz2 plus-5b8f189276b3883253de31d5e7bbbf897d34c85b.tar.xz plus-5b8f189276b3883253de31d5e7bbbf897d34c85b.zip |
Use guildmanager only if build with tmwa support.
Diffstat (limited to 'src/gui/popups')
-rw-r--r-- | src/gui/popups/popupmenu.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index d596f1a50..9a998214f 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -214,8 +214,10 @@ void PopupMenu::showPopup(const int x, const int y, const Being *const being) } else { +#ifdef TMWA_SUPPORT if (guild2->getServerGuild() || (guildManager && guildManager->havePower())) +#endif { // TRANSLATORS: popup menu item // TRANSLATORS: invite player to guild @@ -492,8 +494,10 @@ void PopupMenu::showPlayerPopup(const std::string &nick) { if (guild2->getMember(mNick)) { +#ifdef TMWA_SUPPORT if (guild2->getServerGuild() || (guildManager && guildManager->havePower())) +#endif { // TRANSLATORS: popup menu item // TRANSLATORS: kick player from guild @@ -509,8 +513,10 @@ void PopupMenu::showPlayerPopup(const std::string &nick) } else { +#ifdef TMWA_SUPPORT if (guild2->getServerGuild() || (guildManager && guildManager->havePower())) +#endif { // TRANSLATORS: popup menu item // TRANSLATORS: invite player to guild @@ -811,8 +817,10 @@ void PopupMenu::showChatPopup(const int x, const int y, ChatTab *const tab) { if (guild1->getId() == guild2->getId()) { +#ifdef TMWA_SUPPORT if (guild2->getServerGuild() || (guildManager && guildManager->havePower())) +#endif { // TRANSLATORS: popup menu item // TRANSLATORS: kick player from guild @@ -830,8 +838,10 @@ void PopupMenu::showChatPopup(const int x, const int y, ChatTab *const tab) } else { +#ifdef TMWA_SUPPORT if (guild2->getServerGuild() || (guildManager && guildManager->havePower())) +#endif { // TRANSLATORS: popup menu item // TRANSLATORS: invite player to guild @@ -1059,8 +1069,10 @@ void PopupMenu::handleLink(const std::string &link, { if (guild->getServerGuild()) guildHandler->kick(guild->getMember(mNick), ""); +#ifdef TMWA_SUPPORT else if (guildManager) guildManager->kick(mNick); +#endif } } } |