diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-10-07 17:52:14 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-10-07 17:52:14 +0000 |
commit | 2439856505a634e770112b73dfce0b8733558e9c (patch) | |
tree | 352964c3f84f4ed31e5f30dc1b22815938c28236 /protocols/Skype/src/skype_proto.cpp | |
parent | 8d42163a160b263abf709414db8b973f74b4d355 (diff) |
- some minor fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@1807 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.cpp')
-rw-r--r-- | protocols/Skype/src/skype_proto.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/protocols/Skype/src/skype_proto.cpp b/protocols/Skype/src/skype_proto.cpp index b7a13163e1..bafa79ed05 100644 --- a/protocols/Skype/src/skype_proto.cpp +++ b/protocols/Skype/src/skype_proto.cpp @@ -24,8 +24,8 @@ CSkypeProto::~CSkypeProto() CloseHandle(this->signin_lock);
- mir_free(this->login);
- mir_free(this->password);
+ /*mir_free(this->login);
+ mir_free(this->password);*/
mir_free(this->m_szProtoName);
mir_free(this->m_szModuleName);
@@ -224,8 +224,8 @@ int CSkypeProto::SetStatus(int new_status) this->m_iStatus = ID_STATUS_CONNECTING;
this->password = this->GetDecodeSettingString(SKYPE_SETTINGS_PASSWORD);
- //this->ForkThread(&CSkypeProto::SignIn, this);
- this->SignIn(this);
+ this->ForkThread(&CSkypeProto::SignIn, this);
+ //this->SignIn(this);
}
}
@@ -271,8 +271,8 @@ void __cdecl CSkypeProto::SignIn(void*) this->account->BlockWhileLoggingIn();
this->SetStatus(this->m_iDesiredStatus);
- //this->ForkThread(&CSkypeProto::LoadContactList, this);
- this->LoadContactList(this);
+ this->ForkThread(&CSkypeProto::LoadContactList, this);
+ //this->LoadContactList(this);
ReleaseMutex(this->signin_lock);
}
|