diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-10-27 14:55:51 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-10-27 14:55:51 +0000 |
commit | 380f8c00917e29f68935adf7739312c5886b01f1 (patch) | |
tree | e733624b0612f18e39e875225f31ce149cc55223 /protocols/Skype/src/skype_events.cpp | |
parent | 17b51f794dfce371d3f70641cb7a58bf318ab8e1 (diff) |
- fixe info loading
git-svn-id: http://svn.miranda-ng.org/main/trunk@2094 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_events.cpp')
-rw-r--r-- | protocols/Skype/src/skype_events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_events.cpp b/protocols/Skype/src/skype_events.cpp index fdcf1fdedc..541b776e15 100644 --- a/protocols/Skype/src/skype_events.cpp +++ b/protocols/Skype/src/skype_events.cpp @@ -5,7 +5,7 @@ int CSkypeProto::OnModulesLoaded(WPARAM, LPARAM) this->HookEvent(ME_OPT_INITIALISE, &CSkypeProto::OnOptionsInit);
this->HookEvent(ME_USERINFO_INITIALISE, &CSkypeProto::OnUserInfoInit);
this->login = this->GetSettingString(SKYPE_SETTINGS_LOGIN);
- this->rememberPassword = this->GetSettingByte("RememberPassword");
+ this->rememberPassword = this->GetSettingByte("RememberPassword") > 0;
return 0;
}
|