diff options
Diffstat (limited to 'src/gui/windows/socialwindow.cpp')
-rw-r--r-- | src/gui/windows/socialwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/socialwindow.cpp b/src/gui/windows/socialwindow.cpp index a8584d643..03626325b 100644 --- a/src/gui/windows/socialwindow.cpp +++ b/src/gui/windows/socialwindow.cpp @@ -270,7 +270,7 @@ void SocialWindow::action(const ActionEvent &event) mPartyInviter.c_str()), ChatMsgType::BY_SERVER); } - partyHandler->inviteResponse(mPartyInviter, mPartyId, true); + partyHandler->inviteResponse(mPartyId, true); } else if (eventId == "no") { @@ -282,7 +282,7 @@ void SocialWindow::action(const ActionEvent &event) mPartyInviter.c_str()), ChatMsgType::BY_SERVER); } - partyHandler->inviteResponse(mPartyInviter, mPartyId, false); + partyHandler->inviteResponse(mPartyId, false); } mPartyInviter.clear(); |