summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2012-07-31 18:56:18 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2012-07-31 18:56:18 +0000
commite065734345a9884ac52ca535f352786359f397d0 (patch)
tree6d0f8f60753b7a6dd9495351cd32fd68aeeba5ef /plugins
parenteadd77936fd5405d23ab71722183e6f3f2de8208 (diff)
add "(with DLLs)" to title
cosmetic fix git-svn-id: http://svn.miranda-ng.org/main/trunk@1288 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CrashDumper/res/crshdmp.rc2
-rw-r--r--plugins/CrashDumper/src/ui.cpp5
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/CrashDumper/res/crshdmp.rc b/plugins/CrashDumper/res/crshdmp.rc
index 7a4a03e03e..13fdee8606 100644
--- a/plugins/CrashDumper/res/crshdmp.rc
+++ b/plugins/CrashDumper/res/crshdmp.rc
@@ -54,7 +54,7 @@ END
IDD_VIEWVERSION DIALOGEX 0, 0, 375, 236
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
-CAPTION "View Version Information "
+CAPTION "View Version Information"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
PUSHBUTTON "Close",IDCANCEL,302,215,66,14
diff --git a/plugins/CrashDumper/src/ui.cpp b/plugins/CrashDumper/src/ui.cpp
index 00cf9c26cd..f39a329069 100644
--- a/plugins/CrashDumper/src/ui.cpp
+++ b/plugins/CrashDumper/src/ui.cpp
@@ -85,6 +85,11 @@ INT_PTR CALLBACK DlgProcView(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPara
SetDlgItemText(hwndDlg, IDC_VIEWVERSIONINFO, buffer.c_str());
SetWindowLongPtr(hwndDlg, GWLP_USERDATA, lParam);
+ if(lParam & VI_FLAG_PRNDLL)
+ {
+ SetWindowText(hwndDlg,TranslateT("View Version Information (with DLLs)"));
+ }
+
Utils_RestoreWindowPositionNoMove(hwndDlg, NULL, PluginName, "ViewInfo_");
ShowWindow(hwndDlg, SW_SHOW);
}