diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-23 16:24:58 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-23 16:24:58 +0000 |
commit | 88e36d3c7260f27225e4e4f16943dbd0c6439484 (patch) | |
tree | 4eebe28a3d4ba9d0bb86ce2d508aa32fb5a7ecbf /plugins/CSList/src/cslist.cpp | |
parent | bf737d86dbb6a4091086e8488f397db9ac120eb3 (diff) |
ICQ+ specific option deleted
git-svn-id: http://svn.miranda-ng.org/main/trunk@2450 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CSList/src/cslist.cpp')
-rw-r--r-- | plugins/CSList/src/cslist.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/CSList/src/cslist.cpp b/plugins/CSList/src/cslist.cpp index 47abad2db2..f0d824fb7c 100644 --- a/plugins/CSList/src/cslist.cpp +++ b/plugins/CSList/src/cslist.cpp @@ -1030,9 +1030,6 @@ INT_PTR CALLBACK CSOptionsProc( HWND hwnd, UINT message, WPARAM wparam, LPARAM l CheckDlgButton( hwnd, IDC_REMEMBER_POSITION,
getByte( "RememberWindowPosition", DEFAULT_REMEMBER_WINDOW_POSITION ) ?
BST_CHECKED : BST_UNCHECKED );
-
- EnableWindow(GetDlgItem( hwnd, IDC_ALLOW_EXTRA_ICONS ), TRUE);
- CheckDlgButton(hwnd, IDC_ALLOW_EXTRA_ICONS, getByte( "AllowExtraIcons", DEFAULT_ALLOW_EXTRA_ICONS));
return TRUE;
case WM_NOTIFY:
@@ -1040,7 +1037,6 @@ INT_PTR CALLBACK CSOptionsProc( HWND hwnd, UINT message, WPARAM wparam, LPARAM l case PSN_APPLY:
setByte( "ConfirmDeletion", IsDlgButtonChecked( hwnd, IDC_CONFIRM_DELETION ) ? 1 : 0 );
setByte( "DeleteAfterImport", IsDlgButtonChecked( hwnd, IDC_DELETE_AFTER_IMPORT ) ? 1 : 0 );
- setByte( "AllowExtraIcons", IsDlgButtonChecked( hwnd, IDC_ALLOW_EXTRA_ICONS ) ? 1 : 0 );
setByte( "RememberWindowPosition", IsDlgButtonChecked( hwnd, IDC_REMEMBER_POSITION ) ? 1 : 0 );
pcli->pfnReloadProtoMenus();
|