mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
comctl32: Remove variable old which is not really used from DATETIME_LButtonDown.
This commit is contained in:
parent
ea6590af16
commit
8101a13eaf
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue