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/globals.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/globals.cpp')
-rw-r--r-- | plugins/Scriver/src/globals.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/plugins/Scriver/src/globals.cpp b/plugins/Scriver/src/globals.cpp index 50dcdb68c2..7c1f15c2e8 100644 --- a/plugins/Scriver/src/globals.cpp +++ b/plugins/Scriver/src/globals.cpp @@ -210,21 +210,21 @@ static BOOL CALLBACK LangAddCallback(CHAR * str) { int i, count;
UINT cp;
static struct { UINT cpId; const TCHAR *cpName; } cpTable[] = {
- { 874, _T("Thai") }, //
- { 932, _T("Japanese") }, //
- { 936, _T("Simplified Chinese") }, //
- { 949, _T("Korean") }, //
- { 950, _T("Traditional Chinese") }, //
- { 1250, _T("Central European") }, //
- { 1251, _T("Cyrillic") }, //
- { 1252, _T("Latin I") }, //
- { 1253, _T("Greek") }, //
- { 1254, _T("Turkish") }, //
- { 1255, _T("Hebrew") }, //
- { 1256, _T("Arabic") }, //
- { 1257, _T("Baltic") }, //
- { 1258, _T("Vietnamese") }, //
- { 1361, _T("Korean (Johab)") }
+ { 874, LPGENT("Thai") }, //
+ { 932, LPGENT("Japanese") }, //
+ { 936, LPGENT("Simplified Chinese") }, //
+ { 949, LPGENT("Korean") }, //
+ { 950, LPGENT("Traditional Chinese") }, //
+ { 1250, LPGENT("Central European") }, //
+ { 1251, LPGENT("Cyrillic") }, //
+ { 1252, LPGENT("Latin I") }, //
+ { 1253, LPGENT("Greek") }, //
+ { 1254, LPGENT("Turkish") }, //
+ { 1255, LPGENT("Hebrew") }, //
+ { 1256, LPGENT("Arabic") }, //
+ { 1257, LPGENT("Baltic") }, //
+ { 1258, LPGENT("Vietnamese") }, //
+ { 1361, LPGENT("Korean (Johab)") }
};
cp = atoi(str);
count = sizeof(cpTable)/sizeof(cpTable[0]);
|