From 7af95ae105ec7b58b4bc83795546d9d79da1b0b0 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Mon, 7 Dec 1998 10:24:42 +0000 Subject: [PATCH] Bugfix: WIN_ResetQueueWindows would skip some windows. --- windows/win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/win.c b/windows/win.c index 983aca58737..c3197914b5e 100644 --- a/windows/win.c +++ b/windows/win.c @@ -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 */