diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-19 19:18:18 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-19 19:18:18 +0000 |
commit | 378f689c0e7756fb504109604ab095ffad5faadb (patch) | |
tree | d26d0082988b345827a27f1c3365240a61090c4b /plugins/Scriver/src/msglog.cpp | |
parent | f4c13c73bf781e48707a3ffc2aad182bb055a4e2 (diff) |
- Another portion of _T replacement (patch from person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3176 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/src/msglog.cpp')
-rw-r--r-- | plugins/Scriver/src/msglog.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/Scriver/src/msglog.cpp b/plugins/Scriver/src/msglog.cpp index 6c610bd0cd..d197809415 100644 --- a/plugins/Scriver/src/msglog.cpp +++ b/plugins/Scriver/src/msglog.cpp @@ -243,21 +243,21 @@ static EventData *GetTestEvents() {
EventData *event, *firstEvent, *prevEvent;
firstEvent = prevEvent = event = GetTestEvent(IEEDF_SENT);
- event->pszNickT = mir_tstrdup(_T("Me"));
- event->pszTextT = mir_tstrdup(_T("O Lord, bless this Thy hand grenade that with it Thou mayest blow Thine enemies"));
+ event->pszNickT = mir_tstrdup(LPGENT("Me"));
+ event->pszTextT = mir_tstrdup(LPGENT("O Lord, bless this Thy hand grenade that with it Thou mayest blow Thine enemies"));
event = GetTestEvent(IEEDF_SENT);
- event->pszNickT = mir_tstrdup(_T("Me"));
- event->pszTextT = mir_tstrdup(_T("to tiny bits, in Thy mercy"));
+ event->pszNickT = mir_tstrdup(LPGENT("Me"));
+ event->pszTextT = mir_tstrdup(LPGENT("to tiny bits, in Thy mercy"));
prevEvent->next = event;
prevEvent = event;
event = GetTestEvent(0);
- event->pszNickT = mir_tstrdup(_T("My Contact"));
- event->pszTextT = mir_tstrdup(_T("Lorem ipsum dolor sit amet,"));
+ event->pszNickT = mir_tstrdup(LPGENT("My Contact"));
+ event->pszTextT = mir_tstrdup(LPGENT("Lorem ipsum dolor sit amet,"));
prevEvent->next = event;
prevEvent = event;
event = GetTestEvent(0);
- event->pszNickT = mir_tstrdup(_T("My Contact"));
- event->pszTextT = mir_tstrdup(_T("consectetur adipisicing elit"));
+ event->pszNickT = mir_tstrdup(LPGENT("My Contact"));
+ event->pszTextT = mir_tstrdup(LPGENT("consectetur adipisicing elit"));
prevEvent->next = event;
prevEvent = event;
return firstEvent;
|