diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-01-19 17:48:42 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-01-19 17:48:42 +0000 |
commit | f4c13c73bf781e48707a3ffc2aad182bb055a4e2 (patch) | |
tree | 30494d64247f73b9776b9b9027787ea964343050 /plugins/SMS/src/options.cpp | |
parent | b1632650fe8901cc2270e285172da3897526230c (diff) |
cleaner version of previous commits
git-svn-id: http://svn.miranda-ng.org/main/trunk@3175 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SMS/src/options.cpp')
-rw-r--r-- | plugins/SMS/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SMS/src/options.cpp b/plugins/SMS/src/options.cpp index 3ad176f351..5ebe06f253 100644 --- a/plugins/SMS/src/options.cpp +++ b/plugins/SMS/src/options.cpp @@ -37,7 +37,7 @@ INT_PTR CALLBACK DlgProcEditorOptions(HWND hWndDlg, UINT msg, WPARAM wParam, LPA TranslateDialogDefault(hWndDlg);
if (DB_SMS_GetStaticStringW(NULL,"Signature",wszSign,SIZEOF(wszSign),NULL)==FALSE)
- mir_sntprintf(wszSign,SIZEOF(wszSign),TranslateW(_T("From %s:\r\n\r\n")),GetContactNameW(NULL));
+ mir_sntprintf(wszSign,SIZEOF(wszSign),TranslateT("From %s:\r\n\r\n"),GetContactNameW(NULL));
SET_DLG_ITEM_TEXTW(hWndDlg,IDC_SIGNATURE,wszSign);
{
|