comctl32: Simplify MONTHCAL_PaintLeadTrailMonths.

Gerald Pfeifer gerald at pfeifer.com
Thu Mar 31 13:21:25 CDT 2011


---
 dlls/comctl32/monthcal.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/dlls/comctl32/monthcal.c b/dlls/comctl32/monthcal.c
index 58afc97..bae19f8 100644
--- a/dlls/comctl32/monthcal.c
+++ b/dlls/comctl32/monthcal.c
@@ -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);
-- 
1.7.4.1



More information about the wine-patches mailing list