diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-08-19 12:27:39 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-08-19 12:27:39 +0000 |
commit | c46b0d883c898b699196afab90b449df84523440 (patch) | |
tree | 65c02dd6ec57251e9b87ed704e4d9e1a1226fa9d /src/modules/clist | |
parent | 303c94c18dc4b58b9a447c4d11adc471f72ef304 (diff) |
- Double space removal (patch from dartraiden)
git-svn-id: http://svn.miranda-ng.org/main/trunk@5744 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/clist')
-rw-r--r-- | src/modules/clist/groups.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/clist/groups.cpp b/src/modules/clist/groups.cpp index e4d40f7113..fe0a7b6ffb 100644 --- a/src/modules/clist/groups.cpp +++ b/src/modules/clist/groups.cpp @@ -168,7 +168,7 @@ static INT_PTR DeleteGroup(WPARAM wParam, LPARAM) if (db_get_b(NULL, "CList", "ConfirmDelete", SETTING_CONFIRMDELETE_DEFAULT))
{
TCHAR szQuestion[256+100];
- mir_sntprintf(szQuestion, SIZEOF(szQuestion), TranslateT("Are you sure you want to delete group '%s'? This operation can not be undone."), name);
+ mir_sntprintf(szQuestion, SIZEOF(szQuestion), TranslateT("Are you sure you want to delete group '%s'? This operation can not be undone."), name);
if (MessageBox(cli.hwndContactList, szQuestion, TranslateT("Delete Group"), MB_YESNO|MB_ICONQUESTION) == IDNO)
return 1;
}
|