diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-09 07:30:38 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-09 07:30:38 +0000 |
commit | b1582b887972892b58cc93ddc12c9bd854c0d489 (patch) | |
tree | 9ae3d9330f06cb6b7713e2fea65911da28fe8c19 /protocols/SkypeWeb/src/skype_options.cpp | |
parent | 85ef6630cdedb73d7767aa9c6af03304fbe01e47 (diff) |
fixed getting contacts avatars
fixed options page init
git-svn-id: http://svn.miranda-ng.org/main/trunk@12689 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_options.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_options.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/skype_options.cpp b/protocols/SkypeWeb/src/skype_options.cpp index d20b1d360b..66446e1a38 100644 --- a/protocols/SkypeWeb/src/skype_options.cpp +++ b/protocols/SkypeWeb/src/skype_options.cpp @@ -15,6 +15,8 @@ void CSkypeOptionsMain::OnInitDialog() {
CSkypeDlgBase::OnInitDialog();
+ m_skypename.SetTextA(ptrA(m_proto->getStringA(SKYPE_SETTINGS_ID)));
+ m_password.SetTextA(ptrA(m_proto->getStringA("Password")));
SendMessage(m_skypename.GetHwnd(), EM_LIMITTEXT, 32, 0);
SendMessage(m_password.GetHwnd(), EM_LIMITTEXT, 20, 0);
SendMessage(m_group.GetHwnd(), EM_LIMITTEXT, 64, 0);
|