summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2014-01-24 20:26:29 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2014-01-24 20:26:29 +0000
commitf3ee18e7be4f2799c871b995002b0aa88594af04 (patch)
treeed8a26a02c8f6878c0f3897c1539e8dcbbe8209b
parentf5f33f37e22e5dbd2a6d50282bb6c4ca45985583 (diff)
translation fixes and code cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@7866 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/SMS/src/options.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SMS/src/options.cpp b/plugins/SMS/src/options.cpp
index 06ac339f22..4aa934d512 100644
--- a/plugins/SMS/src/options.cpp
+++ b/plugins/SMS/src/options.cpp
@@ -70,8 +70,8 @@ INT_PTR CALLBACK DlgProcEditorOptions(HWND hWndDlg, UINT msg, WPARAM wParam, LPA
case 0:
switch (((LPNMHDR)lParam)->code){
case PSN_APPLY:
- GetDlgItemText(hWndDlg,IDC_SIGNATURE,wszSign,SIZEOF(wszSign));
- DB_SMS_SetStringW(NULL,"Signature",wszSign);
+ GetDlgItemText(hWndDlg,IDC_SIGNATURE,tszSign,SIZEOF(tszSign));
+ DB_SMS_SetStringW(NULL,"Signature",tszSign);
DB_SMS_SetByte(NULL,"UseSignature",IsDlgButtonChecked(hWndDlg,IDC_USESIGNATURE));
DB_SMS_SetByte(NULL,"SignaturePos",IsDlgButtonChecked(hWndDlg,IDC_BEGIN));