diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-07-18 20:14:41 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-07-18 20:14:41 +0000 |
commit | cc17913a506c2d876e50b1af390bf7da50fecddf (patch) | |
tree | 09e9c4be9d794e428ac6119202dad8e1c60c2037 /plugins/PluginUpdater | |
parent | 945e9310ff1812aa38b9dbf6d8c4273a1bc40eda (diff) |
fix for previous committ
git-svn-id: http://svn.miranda-ng.org/main/trunk@5405 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater')
-rw-r--r-- | plugins/PluginUpdater/src/DlgUpdate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/DlgUpdate.cpp b/plugins/PluginUpdater/src/DlgUpdate.cpp index 771eaa7b8e..8d9863aced 100644 --- a/plugins/PluginUpdater/src/DlgUpdate.cpp +++ b/plugins/PluginUpdater/src/DlgUpdate.cpp @@ -290,7 +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")));
+ SetDlgItemText(hDlg, IDC_DETAILS, (bShowDetails ? TranslateT("<< Details") : TranslateT("Details >>")));
break;
case IDC_SELALL:
|