From c077f66c08ea8cc6ab78ebbdf1fff47eec37528c Mon Sep 17 00:00:00 2001 From: Tobias Weimer Date: Sat, 23 Mar 2013 20:48:23 +0000 Subject: more translation fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@4170 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/AutoShutdown/src/frame.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/AutoShutdown/src/frame.cpp b/plugins/AutoShutdown/src/frame.cpp index c48c3927d1..7e4f7ad155 100644 --- a/plugins/AutoShutdown/src/frame.cpp +++ b/plugins/AutoShutdown/src/frame.cpp @@ -268,9 +268,9 @@ static LRESULT CALLBACK FrameWndProc(HWND hwndFrame,UINT msg,WPARAM wParam,LPARA } case M_REFRESH_COLORS: { COLORREF clrBar; - if(FontService_GetColor(TranslateT("Automatic Shutdown"),TranslateT("Progress Bar"),&clrBar)) + if(FontService_GetColor(_T("Automatic Shutdown"),_T("Progress Bar"),&clrBar)) clrBar=GetDefaultColor(FRAMEELEMENT_BAR); - if(FontService_GetColor(TranslateT("Automatic Shutdown"),TranslateT("Background"),&dat->clrBackground)) + if(FontService_GetColor(_T("Automatic Shutdown"),_T("Background"),&dat->clrBackground)) dat->clrBackground=GetDefaultColor(FRAMEELEMENT_BKGRND); if(dat->hbrBackground!=NULL) DeleteObject(dat->hbrBackground); dat->hbrBackground=CreateSolidBrush(dat->clrBackground); @@ -287,7 +287,7 @@ static LRESULT CALLBACK FrameWndProc(HWND hwndFrame,UINT msg,WPARAM wParam,LPARA return 0; case M_REFRESH_FONTS: { LOGFONT lf; - if(!FontService_GetFont(TranslateT("Automatic Shutdown"),TranslateT("Countdown on Frame"),&dat->clrText,&lf)) { + if(!FontService_GetFont(_T("Automatic Shutdown"),_T("Countdown on Frame"),&dat->clrText,&lf)) { if(dat->hFont!=NULL) DeleteObject(dat->hFont); dat->hFont=CreateFontIndirect(&lf); } -- cgit v1.2.3