comctl32: Remove variable old which is not really used from DATETIME_LButtonDown.

This commit is contained in:
Gerald Pfeifer 2010-04-23 20:49:16 +02:00 committed by Alexandre Julliard
parent ea6590af16
commit 8101a13eaf

View file

@ -759,11 +759,10 @@ static LRESULT
DATETIME_LButtonDown (DATETIME_INFO *infoPtr, INT x, INT y)
{
POINT pt;
int old, new;
int new;
pt.x = x;
pt.y = y;
old = infoPtr->select;
new = DATETIME_HitTest (infoPtr, pt);
SetFocus(infoPtr->hwndSelf);