From 4e58aa129c384884d3b9863ac62859e75c1a8b4b Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Sun, 20 Jan 2013 16:15:48 +0000 Subject: - Another portion of _T replacement (patch from person) git-svn-id: http://svn.miranda-ng.org/main/trunk@3191 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/KeyboardNotify/src/options.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/KeyboardNotify/src') diff --git a/plugins/KeyboardNotify/src/options.cpp b/plugins/KeyboardNotify/src/options.cpp index 49a3f3fd89..28a403aeeb 100644 --- a/plugins/KeyboardNotify/src/options.cpp +++ b/plugins/KeyboardNotify/src/options.cpp @@ -118,7 +118,7 @@ extern PROCESS_LIST ProcessList; HWND hwndProto, hwndBasic, hwndEffect, hwndTheme, hwndIgnore, hwndCurrentTab; TCHAR *AttendedName[]={_T("Miranda"), _T("Windows")}; -TCHAR *OrderName[]={_T("left->right"), _T("right->left"), _T("left<->right")}; +TCHAR *OrderName[]={TranslateT("left->right"), TranslateT("right->left"), TranslateT("left<->right")}; PROCESS_LIST ProcessListAux; XSTATUS_INFO *XstatusListAux; @@ -937,12 +937,12 @@ INT_PTR CALLBACK DlgProcThemeOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPAR ofn.lStructSize = sizeof(OPENFILENAME); ofn.hwndOwner = hwndDlg; ofn.hInstance = NULL; - _tcscpy(filter,_T("Keyboard Notify Theme")); + _tcscpy(filter, TranslateT("Keyboard Notify Theme")); wcscat(filter, _T(" (*.knt)")); pfilter = filter + _tcslen(filter) + 1; _tcscpy(pfilter, _T("*.knt")); pfilter = pfilter + _tcslen(pfilter) + 1; - _tcscpy(pfilter, _T("All Files")); + _tcscpy(pfilter, TranslateT("All Files")); pfilter = pfilter + _tcslen(pfilter) + 1; _tcscpy(pfilter, _T("*.*")); pfilter = pfilter + _tcslen(pfilter) + 1; @@ -965,12 +965,12 @@ INT_PTR CALLBACK DlgProcThemeOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPAR ofn.lStructSize = sizeof(OPENFILENAME); ofn.hwndOwner = hwndDlg; ofn.hInstance = NULL; - _tcscpy(filter, _T("Keyboard Notify Theme")); + _tcscpy(filter, TranslateT("Keyboard Notify Theme")); wcscat(filter, _T(" (*.knt)")); pfilter = filter + _tcslen(filter) + 1; _tcscpy(pfilter, _T("*.knt")); pfilter = pfilter + _tcslen(pfilter) + 1; - _tcscpy(pfilter, _T("All Files")); + _tcscpy(pfilter, TranslateT("All Files")); pfilter = pfilter + _tcslen(pfilter) + 1; _tcscpy(pfilter, _T("*.*")); pfilter = pfilter + _tcslen(pfilter) + 1; -- cgit v1.2.3