diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-05-11 14:49:09 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-05-11 14:49:09 +0000 |
commit | 59328dff21b246ffee24cfd45dfe36b65c76e916 (patch) | |
tree | de615a28bb2d43f126ca6a0928364dfc2704c424 /protocols/Skype/src/skype_proto.cpp | |
parent | e0fe91da0455894d26e6d804f9028e0c3efb6d59 (diff) |
- fix own nick in chat log
- add thread sync on contact searching in db
git-svn-id: http://svn.miranda-ng.org/main/trunk@4632 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.cpp')
-rw-r--r-- | protocols/Skype/src/skype_proto.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Skype/src/skype_proto.cpp b/protocols/Skype/src/skype_proto.cpp index f0f074d596..db33037edc 100644 --- a/protocols/Skype/src/skype_proto.cpp +++ b/protocols/Skype/src/skype_proto.cpp @@ -6,7 +6,7 @@ CSkypeProto::CSkypeProto(const char* protoName, const TCHAR* userName) this->rememberPassword = false;
- ::InitializeCriticalSection(&this->cl_loading);
+ ::InitializeCriticalSection(&this->contact_search_lock);
this->SetAllContactStatus(ID_STATUS_OFFLINE);
@@ -28,7 +28,7 @@ CSkypeProto::CSkypeProto(const char* protoName, const TCHAR* userName) CSkypeProto::~CSkypeProto()
{
- ::DeleteCriticalSection(&this->cl_loading);
+ ::DeleteCriticalSection(&this->contact_search_lock);
::mir_free(this->login);
if (this->password)
|