diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-07-03 14:47:30 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-07-03 14:47:30 +0000 |
commit | e06c4679faf776715b47e2c158490d7337ded27a (patch) | |
tree | c1626ac7dd74530d5a2a71a9bf6caac30c58cdfd /protocols/Skype/src/skype_database.cpp | |
parent | 3a5d1404c732af9b8f0d6eafcd7eee5d1dfae292 (diff) |
Skype:
- fixed encoding in auth request DIALOG
- fixed оpening blocked list from statis menu
git-svn-id: http://svn.miranda-ng.org/main/trunk@5221 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_database.cpp')
-rw-r--r-- | protocols/Skype/src/skype_database.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_database.cpp b/protocols/Skype/src/skype_database.cpp index f67bad9f86..ddc780098e 100644 --- a/protocols/Skype/src/skype_database.cpp +++ b/protocols/Skype/src/skype_database.cpp @@ -81,7 +81,7 @@ void CSkypeProto::RaiseAuthRequestEvent(DWORD timestamp, CContact::Ref contact) pCurBlob += ::strlen(sid) + 1;
::strcpy((char *)pCurBlob, reason);
- this->AddDBEvent(hContact, EVENTTYPE_AUTHREQUEST, time(NULL), PREF_UTF, cbBlob, pBlob);
+ this->AddDBEvent(hContact, EVENTTYPE_AUTHREQUEST, time(NULL), DBEF_UTF, cbBlob, pBlob);
}
void CSkypeProto::RaiseMessageSentEvent(HANDLE hContact, DWORD timestamp, SEBinary &guid, const char *message, bool isUnread)
|