summaryrefslogtreecommitdiff
path: root/src/gui/windows/socialwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/windows/socialwindow.cpp')
-rw-r--r--src/gui/windows/socialwindow.cpp64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/gui/windows/socialwindow.cpp b/src/gui/windows/socialwindow.cpp
index f9e13ca98..2d53536bd 100644
--- a/src/gui/windows/socialwindow.cpp
+++ b/src/gui/windows/socialwindow.cpp
@@ -59,7 +59,6 @@ SocialWindow::SocialWindow() :
mGuilds(),
mParties(),
mPartyAcceptDialog(nullptr),
- mPartyCreateDialog(nullptr),
mAttackFilter(nullptr),
mPickupFilter(nullptr),
// TRANSLATORS: here P is title for visible players tab in social window
@@ -323,69 +322,6 @@ void SocialWindow::action(const ActionEvent &event)
mGuildInvited = 0;
mGuildAcceptDialog = nullptr;
}
- else if (eventId == "invite" && mTabs->getSelectedTabIndex() > -1)
- {
- if (mTabs->getSelectedTab())
- static_cast<SocialTab*>(mTabs->getSelectedTab())->invite();
- }
- else if (eventId == "leave" && mTabs->getSelectedTabIndex() > -1)
- {
- if (mTabs->getSelectedTab())
- static_cast<SocialTab*>(mTabs->getSelectedTab())->leave();
- }
- else if (eventId == "create guild")
- {
- if (!serverFeatures->haveNativeGuilds())
- return;
-
- if (!mGuildCreateDialog)
- return;
-
- std::string name = mGuildCreateDialog->getText();
-
- if (name.size() > 16)
- return;
-
- guildHandler->create(name);
- if (localChatTab)
- {
- // TRANSLATORS: chat message
- localChatTab->chatLog(strprintf(_("Creating guild called %s."),
- name.c_str()),
- ChatMsgType::BY_SERVER);
- }
-
- mGuildCreateDialog = nullptr;
- }
- else if (eventId == "~create guild")
- {
- mGuildCreateDialog = nullptr;
- }
- else if (eventId == "create party")
- {
- if (!mPartyCreateDialog)
- return;
-
- std::string name = mPartyCreateDialog->getText();
-
- if (name.size() > 24)
- return;
-
- partyHandler->create(name);
- if (localChatTab)
- {
- // TRANSLATORS: chat message
- localChatTab->chatLog(strprintf(_("Creating party called %s."),
- name.c_str()),
- ChatMsgType::BY_SERVER);
- }
-
- mPartyCreateDialog = nullptr;
- }
- else if (eventId == "~create party")
- {
- mPartyCreateDialog = nullptr;
- }
}
void SocialWindow::showGuildInvite(const std::string &restrict guildName,