diff options
Diffstat (limited to 'protocols/Skype/src/skype_dialogs.cpp')
-rw-r--r-- | protocols/Skype/src/skype_dialogs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Skype/src/skype_dialogs.cpp b/protocols/Skype/src/skype_dialogs.cpp index cf8f640541..adb3405f6b 100644 --- a/protocols/Skype/src/skype_dialogs.cpp +++ b/protocols/Skype/src/skype_dialogs.cpp @@ -687,7 +687,7 @@ INT_PTR CALLBACK CSkypeProto::InviteToChatProc(HWND hwndDlg, UINT msg, WPARAM wP param->ppro->AddChatContact(
chatID,
::mir_utf8decodeW(invitedContacts[i]),
- mir_utf8decodeW(CParticipant::GetRankName(CParticipant::SPEAKER)),
+ CSkypeProto::Roles[CParticipant::SPEAKER],
status);
}
@@ -710,7 +710,7 @@ INT_PTR CALLBACK CSkypeProto::InviteToChatProc(HWND hwndDlg, UINT msg, WPARAM wP param->ppro->AddChatContact(
chatID,
::mir_utf8decodeW(invitedContacts[i]),
- ::mir_utf8decodeW(CParticipant::GetRankName(CParticipant::SPEAKER)),
+ CSkypeProto::Roles[CParticipant::SPEAKER],
status);
}
}
|