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/recvdlg.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/recvdlg.cpp')
-rw-r--r-- | plugins/SMS/src/recvdlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SMS/src/recvdlg.cpp b/plugins/SMS/src/recvdlg.cpp index cf76b4e3c5..d765e231b4 100644 --- a/plugins/SMS/src/recvdlg.cpp +++ b/plugins/SMS/src/recvdlg.cpp @@ -199,11 +199,11 @@ HWND RecvSMSWindowAdd(HANDLE hContact,DWORD dwEventType,LPWSTR lpwszPhone,SIZE_T switch(dwEventType){
case ICQEVENTTYPE_SMS:
- lpwszTitlepart=TranslateW(_T("Received SMS"));
+ lpwszTitlepart=TranslateT("Received SMS");
hIcon=LoadSkinnedIcon(SKINICON_OTHER_SMS);
break;
case ICQEVENTTYPE_SMSCONFIRMATION:
- lpwszTitlepart=TranslateW(_T("Received SMS Confirmation"));
+ lpwszTitlepart=TranslateT("Received SMS Confirmation");
GetDataFromMessage(lpszMessage,dwMessageSize,NULL,NULL,0,NULL,&iIcon);
hIcon=(HICON)LoadImage(ssSMSSettings.hInstance,MAKEINTRESOURCE(iIcon),IMAGE_ICON,0,0,LR_SHARED);
break;
|