diff options
author | George Hazan <george.hazan@gmail.com> | 2013-07-13 10:30:04 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-07-13 10:30:04 +0000 |
commit | de66faa65debc88f5449104dbe0be27b4290f020 (patch) | |
tree | 3c5a6ea23073487b67ecbd06b5aaa2b6bc09994c /protocols/Skype | |
parent | 7e4a94bec38373ce66ff32e6b12368c4deb180ea (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@5350 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype')
-rw-r--r-- | protocols/Skype/src/skype_chat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_chat.cpp b/protocols/Skype/src/skype_chat.cpp index 11e57724d8..02988fd15c 100644 --- a/protocols/Skype/src/skype_chat.cpp +++ b/protocols/Skype/src/skype_chat.cpp @@ -174,7 +174,7 @@ void ChatRoom::CreateChatSession(bool showWindow) for (int i = 1; i < SIZEOF(ChatRoom::Roles) - 2; i++)
{
- gce.ptszStatus = ::TranslateT(ChatRoom::Roles[i]);
+ gce.ptszStatus = ::TranslateTS(ChatRoom::Roles[i]);
::CallServiceSync(MS_GC_EVENT, 0, (LPARAM)&gce);
}
|