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/msgdialog.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/msgdialog.cpp')
-rw-r--r-- | plugins/Scriver/src/msgdialog.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/Scriver/src/msgdialog.cpp b/plugins/Scriver/src/msgdialog.cpp index 757f74aaa5..9b90c24636 100644 --- a/plugins/Scriver/src/msgdialog.cpp +++ b/plugins/Scriver/src/msgdialog.cpp @@ -43,13 +43,13 @@ static void UpdateReadChars(HWND hwndDlg, struct SrmmWindowData * dat); static WNDPROC OldMessageEditProc, OldLogEditProc;
static ToolbarButton toolbarButtons[] = {
- {_T("Quote"), IDC_QUOTE, 0, 4, 24},
- {_T("Smiley"), IDC_SMILEYS, 0, 10, 24},
- {_T("Add Contact"), IDC_ADD, 0, 10, 24},
- {_T("User Menu"), IDC_USERMENU, 1, 0, 24},
- {_T("User Details"), IDC_DETAILS, 1, 0, 24},
- {_T("History"), IDC_HISTORY, 1, 0, 24},
- {_T("Send"), IDOK, 1, 0, 38}
+ {LPGENT("Quote"), IDC_QUOTE, 0, 4, 24},
+ {LPGENT("Smiley"), IDC_SMILEYS, 0, 10, 24},
+ {LPGENT("Add Contact"), IDC_ADD, 0, 10, 24},
+ {LPGENT("User Menu"), IDC_USERMENU, 1, 0, 24},
+ {LPGENT("User Details"), IDC_DETAILS, 1, 0, 24},
+ {LPGENT("History"), IDC_HISTORY, 1, 0, 24},
+ {LPGENT("Send"), IDOK, 1, 0, 38}
};
static DWORD CALLBACK StreamOutCallback(DWORD_PTR dwCookie, LPBYTE pbBuff, LONG cb, LONG * pcb)
|