diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-13 05:27:49 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-13 05:27:49 +0000 |
commit | ab373716a04db4555507c57025e569b80fb31e8f (patch) | |
tree | 6c60f823affc6c05de0446777178772e3646b53f /plugins | |
parent | 03f6be61932dbb430a3945feffb0249e8e385971 (diff) |
Select all button removed from components list
git-svn-id: http://svn.miranda-ng.org/main/trunk@6051 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/PluginUpdater/res/Resource.rc | 1 | ||||
-rw-r--r-- | plugins/PluginUpdater/src/DlgListNew.cpp | 6 | ||||
-rw-r--r-- | plugins/PluginUpdater/src/resource.h | 24 |
3 files changed, 12 insertions, 19 deletions
diff --git a/plugins/PluginUpdater/res/Resource.rc b/plugins/PluginUpdater/res/Resource.rc index 55c2d8db16..488690b107 100644 --- a/plugins/PluginUpdater/res/Resource.rc +++ b/plugins/PluginUpdater/res/Resource.rc @@ -138,7 +138,6 @@ BEGIN DEFPUSHBUTTON "Download",IDOK,185,218,50,14
CONTROL "",IDC_STATIC,"Static",SS_ETCHEDHORZ,1,58,236,1
CONTROL "",IDC_LIST_UPDATES,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP,6,64,229,149
- PUSHBUTTON "Select &all",IDC_SELALL,6,218,60,14,NOT WS_TABSTOP
PUSHBUTTON "Select &none",IDC_SELNONE,69,218,60,14,NOT WS_TABSTOP
END
diff --git a/plugins/PluginUpdater/src/DlgListNew.cpp b/plugins/PluginUpdater/src/DlgListNew.cpp index 0186fdcf18..2f748f5158 100644 --- a/plugins/PluginUpdater/src/DlgListNew.cpp +++ b/plugins/PluginUpdater/src/DlgListNew.cpp @@ -158,7 +158,6 @@ static LRESULT CALLBACK PluginListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LP static int ListDlg_Resize(HWND, LPARAM, UTILRESIZECONTROL *urc)
{
switch (urc->wId) {
- case IDC_SELALL:
case IDC_SELNONE:
return RD_ANCHORX_LEFT | RD_ANCHORY_BOTTOM;
@@ -320,16 +319,11 @@ INT_PTR CALLBACK DlgList(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) switch(LOWORD(wParam)) {
case IDOK:
EnableWindow( GetDlgItem(hDlg, IDOK), FALSE);
- EnableWindow( GetDlgItem(hDlg, IDC_SELALL), FALSE);
EnableWindow( GetDlgItem(hDlg, IDC_SELNONE), FALSE);
mir_forkthread(ApplyDownloads, hDlg);
return TRUE;
- case IDC_SELALL:
- SelectAll(hDlg, true);
- break;
-
case IDC_SELNONE:
SelectAll(hDlg, false);
break;
diff --git a/plugins/PluginUpdater/src/resource.h b/plugins/PluginUpdater/src/resource.h index 86dc26469c..78ae34a6b9 100644 --- a/plugins/PluginUpdater/src/resource.h +++ b/plugins/PluginUpdater/src/resource.h @@ -2,21 +2,21 @@ // Microsoft Visual C++ generated include file.
// Used by D:\Development\Miranda NG\plugins\PluginUpdater\res\Resource.rc
//
-#define IDI_MENU 101
-#define IDD_UPDATE 102
-#define IDD_OPT_UPDATENOTIFY 104
-#define IDD_POPUP 105
-#define IDD_POPUPDUMMI 106
-#define IDD_LIST 107
-#define IDI_OK 108
-#define IDI_CANCEL 109
-#define IDI_INFO 111
-#define IDI_PLGLIST 117
+#define IDD_UPDATE 101
+#define IDD_OPT_UPDATENOTIFY 102
+#define IDD_POPUP 103
+#define IDD_POPUPDUMMI 104
+#define IDD_LIST 105
+#define IDI_MENU 201
+#define IDI_OK 202
+#define IDI_CANCEL 203
+#define IDI_INFO 204
+#define IDI_PLGLIST 205
#define IDC_UPDATETEXT 1001
+#define IDC_PB 1002
+#define IDC_LABEL 1003
#define IDC_SELALL 1004
-#define IDC_PB 1005
#define IDC_SELNONE 1005
-#define IDC_LABEL 1006
#define IDC_DETAILS 1006
#define IDC_USEWINCOLORS 1007
#define IDC_RC 1008
|