Commit 7af95ae1 authored by Ulrich Weigand's avatar Ulrich Weigand Committed by Alexandre Julliard

Bugfix: WIN_ResetQueueWindows would skip some windows.

parent 75de18d8
......@@ -345,7 +345,7 @@ BOOL32 WIN_ResetQueueWindows( WND* wnd, HQUEUE16 hQueue, HQUEUE16 hNew )
ret = TRUE;
}
if (wnd->child)
ret |= WIN_ResetQueueWindows( wnd->child, hQueue, hNew );
ret |= WIN_ResetQueueWindows( wnd, hQueue, hNew );
}
}
else /* Queue is being destroyed */
......
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