diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-08-18 19:11:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-08-18 19:11:20 +0300 |
commit | 8f49d216de9972f3daaba1b313f8a347560a4cb8 (patch) | |
tree | 0c1139da57df0399cc8fb6b60c22246f1b16ca18 | |
parent | e469ab2f1940cb04b53bb3b72cc7b5a0cd0669b0 (diff) | |
download | plus-8f49d216de9972f3daaba1b313f8a347560a4cb8.tar.gz plus-8f49d216de9972f3daaba1b313f8a347560a4cb8.tar.bz2 plus-8f49d216de9972f3daaba1b313f8a347560a4cb8.tar.xz plus-8f49d216de9972f3daaba1b313f8a347560a4cb8.zip |
Remove SocialWindow::showGuildCreate
-rw-r--r-- | src/gui/windows/socialwindow.cpp | 11 | ||||
-rw-r--r-- | src/gui/windows/socialwindow.h | 2 |
2 files changed, 0 insertions, 13 deletions
diff --git a/src/gui/windows/socialwindow.cpp b/src/gui/windows/socialwindow.cpp index ad9c34e8c..fbd7578a3 100644 --- a/src/gui/windows/socialwindow.cpp +++ b/src/gui/windows/socialwindow.cpp @@ -392,17 +392,6 @@ void SocialWindow::action(const ActionEvent &event) } } -void SocialWindow::showGuildCreate() -{ - CREATEWIDGETV(mGuildCreateDialog, TextDialog, - // TRANSLATORS: guild creation message - _("Guild Name"), - // TRANSLATORS: guild creation message - _("Choose your guild's name."), this); - mGuildCreateDialog->setActionEventId("create guild"); - mGuildCreateDialog->addActionListener(this); -} - void SocialWindow::showGuildInvite(const std::string &restrict guildName, const int guildId, const std::string &restrict inviterName) diff --git a/src/gui/windows/socialwindow.h b/src/gui/windows/socialwindow.h index 89cf673da..dc68fb7d4 100644 --- a/src/gui/windows/socialwindow.h +++ b/src/gui/windows/socialwindow.h @@ -69,8 +69,6 @@ class SocialWindow final : public Window, const int guildId, const std::string &restrict inviterName); - void showGuildCreate(); - void showPartyInvite(const std::string &restrict partyName, const std::string &restrict inviter, const int partyId); |