diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-09 16:05:24 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-09 16:05:24 +0000 |
commit | 04a5825fb3ea92bba6ecba03400e49b72d7bf4d1 (patch) | |
tree | 17e3c53a23ca6f32594be775c0ee0d84011ef834 | |
parent | d13ef0e549608d5fa76cb12d14be33afb4384d76 (diff) |
SkypeWeb: AutoSync is now enabled by default.
git-svn-id: http://svn.miranda-ng.org/main/trunk@12704 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/SkypeWeb/src/skype_login.cpp | 2 | ||||
-rw-r--r-- | protocols/SkypeWeb/src/skype_options.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_login.cpp b/protocols/SkypeWeb/src/skype_login.cpp index c3b838911d..11821e7173 100644 --- a/protocols/SkypeWeb/src/skype_login.cpp +++ b/protocols/SkypeWeb/src/skype_login.cpp @@ -182,7 +182,7 @@ void CSkypeProto::OnSubscriptionsCreated(const NETLIBHTTPREQUEST *response) skypenames.destroy();
m_hPollingThread = ForkThreadEx(&CSkypeProto::PollingThread, 0, NULL);
- if (getByte("AutoSync", 0))
+ if (getByte("AutoSync", 1))
SyncHistory();
}
diff --git a/protocols/SkypeWeb/src/skype_options.cpp b/protocols/SkypeWeb/src/skype_options.cpp index ad7556ff97..b45e9ca2d9 100644 --- a/protocols/SkypeWeb/src/skype_options.cpp +++ b/protocols/SkypeWeb/src/skype_options.cpp @@ -18,7 +18,7 @@ void CSkypeOptionsMain::OnInitDialog() m_skypename.SetTextA(ptrA(m_proto->getStringA(SKYPE_SETTINGS_ID)));
m_password.SetTextA(ptrA(m_proto->getStringA("Password")));
- m_autosync.SetState(m_proto->getByte("AutoSync", 0));
+ m_autosync.SetState(m_proto->getByte("AutoSync", 1));
SendMessage(m_skypename.GetHwnd(), EM_LIMITTEXT, 32, 0);
SendMessage(m_password.GetHwnd(), EM_LIMITTEXT, 20, 0);
|