From c28a1d019dfdbb73dc83208e91622a7b2e1451f4 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Wed, 28 Sep 2011 16:33:37 +0400 Subject: [PATCH] comctl32/monthcal: Fix week numbers background color. --- dlls/comctl32/monthcal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/monthcal.c b/dlls/comctl32/monthcal.c index e73b40aaa11..cdc63ed1c55 100644 --- a/dlls/comctl32/monthcal.c +++ b/dlls/comctl32/monthcal.c @@ -962,7 +962,7 @@ static void MONTHCAL_PaintWeeknumbers(const MONTHCAL_INFO *infoPtr, HDC hdc, con r = infoPtr->calendars[calIdx].weeknums; /* erase whole week numbers area */ - FillRect(hdc, &r, infoPtr->brushes[BrushTitle]); + FillRect(hdc, &r, infoPtr->brushes[BrushMonth]); SetTextColor(hdc, infoPtr->colors[MCSC_TITLEBK]); /* reduce rectangle to one week number */