From 2f261839b60692e33d0e160344d0d636d49c90ba Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 27 Jul 2016 14:23:31 +0000 Subject: less TCHARs git-svn-id: http://svn.miranda-ng.org/main/trunk@17138 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Toaster/src/structs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/Toaster/src/structs.h') diff --git a/plugins/Toaster/src/structs.h b/plugins/Toaster/src/structs.h index fe8a658850..96900ce785 100644 --- a/plugins/Toaster/src/structs.h +++ b/plugins/Toaster/src/structs.h @@ -17,8 +17,8 @@ struct ToastData : public MZeroedObject ToastData(MCONTACT _hContact, const wchar_t *_tszTitle, const wchar_t *_tszText, HICON _hIcon = NULL) : hContact(_hContact), - tszTitle(mir_tstrdup(_tszTitle)), - tszText(mir_tstrdup(_tszText)), + tszTitle(mir_wstrdup(_tszTitle)), + tszText(mir_wstrdup(_tszText)), hIcon(_hIcon), iType(_hIcon ? 2 : 0) , pPopupProc(NULL), @@ -26,8 +26,8 @@ struct ToastData : public MZeroedObject {} ToastData(MCONTACT _hContact, const wchar_t *_tszTitle, const wchar_t *_tszText, HBITMAP bmp = NULL) : hContact(_hContact), - tszTitle(mir_tstrdup(_tszTitle)), - tszText(mir_tstrdup(_tszText)), + tszTitle(mir_wstrdup(_tszTitle)), + tszText(mir_wstrdup(_tszText)), hBitmap(bmp), iType(bmp ? 1 : 0), pPopupProc(NULL), -- cgit v1.2.3