diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-07 12:08:19 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-07 12:08:19 +0000 |
commit | ae7f135deb953d2b25f836fb93133d4b413fb9c0 (patch) | |
tree | 6a6230bca282132a8d411d26b7a91ca352318bd1 | |
parent | bd6e053741e849b1053e474a5832776475aa8217 (diff) |
fixed own port using
git-svn-id: http://svn.miranda-ng.org/main/trunk@4363 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/Skype/src/skype_dialogs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_dialogs.cpp b/protocols/Skype/src/skype_dialogs.cpp index 1029751490..e76034b5f6 100644 --- a/protocols/Skype/src/skype_dialogs.cpp +++ b/protocols/Skype/src/skype_dialogs.cpp @@ -151,7 +151,7 @@ INT_PTR CALLBACK CSkypeProto::SkypeMainOptionsProc(HWND hwnd, UINT message, WPAR BOOL error;
int port = GetDlgItemInt(hwnd, IDC_PORT, &error, FALSE);
proto->SetSettingWord("Port", port);
- proto->GetSettingByte("UseAlternativePorts", IsDlgButtonChecked( hwnd, IDC_USE_ALT_PORTS ) > 0);
+ proto->SetSettingByte("UseAlternativePorts", IsDlgButtonChecked(hwnd, IDC_USE_ALT_PORTS) > 0);
}
return TRUE;
|