summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2013-07-18 20:09:43 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2013-07-18 20:09:43 +0000
commit945e9310ff1812aa38b9dbf6d8c4273a1bc40eda (patch)
tree3feb1928036af1bbe806a6215264f61968453c83
parentd794b8dbf82718813c26a56e8141c79732d5765a (diff)
cosmetic patch by Cthulhux (fixes #420)
git-svn-id: http://svn.miranda-ng.org/main/trunk@5404 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/PluginUpdater/res/Resource.rc6
-rw-r--r--plugins/PluginUpdater/src/DlgUpdate.cpp1
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/PluginUpdater/res/Resource.rc b/plugins/PluginUpdater/res/Resource.rc
index 696bb28a0c..b4a5764755 100644
--- a/plugins/PluginUpdater/res/Resource.rc
+++ b/plugins/PluginUpdater/res/Resource.rc
@@ -42,14 +42,14 @@ STYLE DS_SETFONT | DS_MODALFRAME | DS_SETFOREGROUND | DS_FIXEDSYS | DS_CENTER |
CAPTION "Updates found!"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
- CTEXT "PluginUpdater has detected updated versions of some Miranda components. Click on Details button to view more information",IDC_UPDATETEXT,9,9,223,22
+ CTEXT "PluginUpdater has detected updated versions of some Miranda components. Click on Details button to view more information",IDC_UPDATETEXT,9,7,223,24
DEFPUSHBUTTON "Update",IDOK,32,36,50,14
PUSHBUTTON "Details >>",IDC_DETAILS,95,36,50,14,NOT WS_TABSTOP
PUSHBUTTON "Cancel",IDCANCEL,157,36,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,129,218,50,14,NOT WS_TABSTOP
- PUSHBUTTON "Select &none",IDC_SELNONE,185,218,50,14,NOT WS_TABSTOP
+ PUSHBUTTON "Select &all",IDC_SELALL,109,218,60,14,NOT WS_TABSTOP
+ PUSHBUTTON "Select &none",IDC_SELNONE,175,218,60,14,NOT WS_TABSTOP
END
IDD_POPUPDUMMI DIALOGEX 65526, 65526, 1, 1
diff --git a/plugins/PluginUpdater/src/DlgUpdate.cpp b/plugins/PluginUpdater/src/DlgUpdate.cpp
index c187455d9d..771eaa7b8e 100644
--- a/plugins/PluginUpdater/src/DlgUpdate.cpp
+++ b/plugins/PluginUpdater/src/DlgUpdate.cpp
@@ -290,6 +290,7 @@ static INT_PTR CALLBACK DlgUpdate(HWND hDlg, UINT message, WPARAM wParam, LPARAM
case IDC_DETAILS:
bShowDetails = !bShowDetails;
ResizeVert(hDlg, bShowDetails ? 242 : 60);
+ SetDlgItemText(hDlg, IDC_DETAILS, (bShowDetails ? TranslateT("Details >>") : TranslateT("<< Details")));
break;
case IDC_SELALL: