summaryrefslogtreecommitdiff
path: root/plugins/PluginUpdater
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2014-06-08 09:08:43 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2014-06-08 09:08:43 +0000
commit98bef8d10e97f40091f927942fe1845c4f7a1e6d (patch)
tree472056266e957e6d603c9052b0a64cfee7d2a535 /plugins/PluginUpdater
parent5baafa881a2ec9206eeac155fe4bfc0659c2af5c (diff)
MessageVox caption and text mix-up fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@9422 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater')
-rw-r--r--plugins/PluginUpdater/src/DlgUpdate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/DlgUpdate.cpp b/plugins/PluginUpdater/src/DlgUpdate.cpp
index efdb9ebcf3..9341df53ce 100644
--- a/plugins/PluginUpdater/src/DlgUpdate.cpp
+++ b/plugins/PluginUpdater/src/DlgUpdate.cpp
@@ -135,7 +135,7 @@ static void ApplyUpdates(void *param)
db_set_b(NULL, MODNAME, "RestartCount", 5);
// 5) Prepare Restart
- int rc = MessageBox(hDlg, TranslateT("Plugin Updater"), TranslateT("Update complete. Press Yes to restart Miranda now or No to postpone a restart until the exit."), MB_YESNO | MB_ICONQUESTION);
+ int rc = MessageBox(hDlg, TranslateT("Update complete. Press Yes to restart Miranda now or No to postpone a restart until the exit."), TranslateT("Plugin Updater"), MB_YESNO | MB_ICONQUESTION);
EndDialog(hDlg, 0);
if (rc == IDYES)
CallFunctionAsync(RestartMe, 0);