diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-07 14:46:18 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-07 14:46:18 +0000 |
commit | 4bb5a1db945eb4027279213201e91da33351fb7e (patch) | |
tree | 96b400be24aee4d06a5172efc221d55fbd039e64 /plugins/UserInfoEx/psp_options.cpp | |
parent | 767d070330f3fb669495b2e3481f0c8abfcd1300 (diff) |
MS_SYSTEM_GETCONTACTINFO in UserInfoEx is made persistent
git-svn-id: http://svn.miranda-ng.org/main/trunk@812 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/psp_options.cpp')
-rw-r--r-- | plugins/UserInfoEx/psp_options.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/UserInfoEx/psp_options.cpp b/plugins/UserInfoEx/psp_options.cpp index 3d0427ecba..9399e90f63 100644 --- a/plugins/UserInfoEx/psp_options.cpp +++ b/plugins/UserInfoEx/psp_options.cpp @@ -688,7 +688,6 @@ static INT_PTR CALLBACK DlgProc_AdvancedOpts(HWND hDlg, UINT uMsg, WPARAM wParam DBGetCheckBtn(hDlg, CHECK_OPT_ICOVERSION, SET_ICONS_CHECKFILEVERSION, TRUE);
DBGetCheckBtn(hDlg, CHECK_OPT_BUTTONICONS, SET_ICONS_BUTTONS, TRUE);
DBGetCheckBtn(hDlg, CHECK_OPT_METASCAN, SET_META_SCAN, TRUE);
- DBGetCheckBtn(hDlg, CHECK_OPT_GETCONTACTINFO_ENABLED, SET_GETCONTACTINFO_ENABLED, DEFVAL_GETCONTACTINFO_ENABLED);
DBGetCheckBtn(hDlg, CHECK_OPT_SREMAIL_ENABLED, SET_EXTENDED_EMAILSERVICE, TRUE);
if(tmi.getTimeZoneTime) {
CheckDlgButton(hDlg, CHECK_OPT_AUTOTIMEZONE, TRUE);
@@ -707,7 +706,6 @@ static INT_PTR CALLBACK DlgProc_AdvancedOpts(HWND hDlg, UINT uMsg, WPARAM wParam DBWriteCheckBtn(hDlg, CHECK_OPT_BUTTONICONS, SET_ICONS_BUTTONS);
DBWriteCheckBtn(hDlg, CHECK_OPT_METASCAN, SET_META_SCAN);
- DBWriteCheckBtn(hDlg, CHECK_OPT_GETCONTACTINFO_ENABLED, SET_GETCONTACTINFO_ENABLED);
DBWriteCheckBtn(hDlg, CHECK_OPT_SREMAIL_ENABLED, SET_EXTENDED_EMAILSERVICE);
if (!tmi.getTimeZoneTime) {
DBWriteCheckBtn(hDlg, CHECK_OPT_AUTOTIMEZONE, SET_OPT_AUTOTIMEZONE);
@@ -725,7 +723,6 @@ static INT_PTR CALLBACK DlgProc_AdvancedOpts(HWND hDlg, UINT uMsg, WPARAM wParam case CHECK_OPT_ICOVERSION:
case CHECK_OPT_BUTTONICONS:
case CHECK_OPT_METASCAN:
- case CHECK_OPT_GETCONTACTINFO_ENABLED:
case CHECK_OPT_SREMAIL_ENABLED:
case CHECK_OPT_AUTOTIMEZONE:
{
|