summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2015-07-05 07:27:02 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2015-07-05 07:27:02 +0000
commitcd59e59b4bd0738719c8e8a2ad948ef76088f8de (patch)
tree9bc5464bfd4f61cf52aa7b787dd539d79dcf4e2f /plugins
parented968cd4034640d88ff5f4e3c795a6357ba9b214 (diff)
DBeditorPP: Fix dialog text.
git-svn-id: http://svn.miranda-ng.org/main/trunk@14491 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/DbEditorPP/src/main_window.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/DbEditorPP/src/main_window.cpp b/plugins/DbEditorPP/src/main_window.cpp
index f8f3826db9..12966c19c3 100644
--- a/plugins/DbEditorPP/src/main_window.cpp
+++ b/plugins/DbEditorPP/src/main_window.cpp
@@ -130,7 +130,7 @@ LRESULT CALLBACK ModuleTreeSubclassProc(HWND hwnd, UINT msg, WPARAM wParam, LPAR
else if ((mtis->type == CONTACT) && hContact) {
if (db_get_b(NULL, "CList", "ConfirmDelete", 1)) {
TCHAR str[MSG_SIZE];
- mir_sntprintf(text, TranslateT("Are you sure you want to delete contact \"%s\"?"), text);
+ mir_sntprintf(str, TranslateT("Are you sure you want to delete contact \"%s\"?"), text);
if (dlg(str, MB_YESNO | MB_ICONEXCLAMATION) == IDNO)
break;
}