comctl32: Simplify MONTHCAL_PaintLeadTrailMonths.

This commit is contained in:
Gerald Pfeifer 2011-03-31 20:21:25 +02:00 committed by Alexandre Julliard
parent d93b6c0aa2
commit 1e74b6379c
1 changed files with 1 additions and 3 deletions

View File

@ -937,15 +937,13 @@ static void MONTHCAL_PaintFocusAndCircle(const MONTHCAL_INFO *infoPtr, HDC hdc,
/* months before first calendar month and after last calendar month */
static void MONTHCAL_PaintLeadTrailMonths(const MONTHCAL_INFO *infoPtr, HDC hdc, const PAINTSTRUCT *ps)
{
INT prev_month, mask, length;
INT mask, length;
SYSTEMTIME st_max, st;
if (infoPtr->dwStyle & MCS_NOTRAILINGDATES) return;
SetTextColor(hdc, infoPtr->colors[MCSC_TRAILINGTEXT]);
prev_month = infoPtr->calendars[0].month.wMonth - 1;
/* draw prev month */
MONTHCAL_GetMinDate(infoPtr, &st);
mask = 1 << (st.wDay-1);