From eddc9491158ece172f260a1fb07a4c92dd8057ed Mon Sep 17 00:00:00 2001 From: Dart Raiden Date: Tue, 29 Dec 2015 11:15:58 +0000 Subject: AutoShutdown: addition to commit [15950] git-svn-id: http://svn.miranda-ng.org/main/trunk@15962 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/AutoShutdown/src/frame.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins') diff --git a/plugins/AutoShutdown/src/frame.cpp b/plugins/AutoShutdown/src/frame.cpp index 03f44d6254..7477c0c990 100644 --- a/plugins/AutoShutdown/src/frame.cpp +++ b/plugins/AutoShutdown/src/frame.cpp @@ -223,9 +223,9 @@ static LRESULT CALLBACK FrameWndProc(HWND hwndFrame, UINT msg, WPARAM wParam, LP case M_REFRESH_COLORS: COLORREF clrBar; - if (FontService_GetColor(_T("Automatic Shutdown"), _T("Progress Bar"), &clrBar)) + if (FontService_GetColor(_T("Automatic shutdown"), _T("Progress bar"), &clrBar)) clrBar = GetDefaultColor(FRAMEELEMENT_BAR); - if (FontService_GetColor(_T("Automatic Shutdown"), _T("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); @@ -240,7 +240,7 @@ static LRESULT CALLBACK FrameWndProc(HWND hwndFrame, UINT msg, WPARAM wParam, LP case M_REFRESH_FONTS: { LOGFONT lf; - if (!FontService_GetFont(_T("Automatic Shutdown"), _T("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