[WIN32K]
authorAmine Khaldi <amine.khaldi@reactos.org>
Mon, 29 Aug 2011 14:32:30 +0000 (14:32 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Mon, 29 Aug 2011 14:32:30 +0000 (14:32 +0000)
* The previous commit (r53487) mentioned a revert, but the patch didn't reflect it. Spotted by Victor.

svn path=/trunk/; revision=53490

reactos/subsystems/win32/win32k/ntuser/focus.c

index b164996..32389a9 100644 (file)
@@ -166,7 +166,7 @@ co_IntSendKillFocusMessages(HWND hWndPrev, HWND hWnd)
    {
       TRACE("sending WM_KILLFOCUS to hwnd 0x%x\n", hWndPrev);
       IntNotifyWinEvent(EVENT_OBJECT_FOCUS, NULL, OBJID_CLIENT, CHILDID_SELF, 0);
-      co_IntSendMessageNoWait(hWndPrev, WM_KILLFOCUS, (WPARAM)hWnd, 0);
+      co_IntPostOrSendMessage(hWndPrev, WM_KILLFOCUS, (WPARAM)hWnd, 0);
    }
 }