Commit 44f1fbce authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

comctl32: Remove variable old_focused which is not really used from MONTHCAL_Mouse.

parent c6f74e38
......@@ -2033,7 +2033,7 @@ static LRESULT
MONTHCAL_MouseMove(MONTHCAL_INFO *infoPtr, LPARAM lParam)
{
MCHITTESTINFO ht;
SYSTEMTIME old_focused, st_ht;
SYSTEMTIME st_ht;
INT hit;
RECT r;
......@@ -2054,7 +2054,6 @@ MONTHCAL_MouseMove(MONTHCAL_INFO *infoPtr, LPARAM lParam)
}
st_ht = ht.st;
old_focused = infoPtr->focusedSel;
/* if pointer is over focused day still there's nothing to do */
if(!MONTHCAL_SetDayFocus(infoPtr, &ht.st)) return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment