mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
- Message Queue Fix, resolves a number of application regressions (Total Commander works again, for example). Patch by Hartmut Birr. To be commited into 0.2.7 after more testing.
svn path=/trunk/; revision=16727
This commit is contained in:
@@ -1577,6 +1577,7 @@ IntCreateWindowEx(DWORD dwExStyle,
|
||||
IntSetMenu(WindowObject, hMenu, &MenuChanged);
|
||||
}
|
||||
WindowObject->MessageQueue = PsGetWin32Thread()->MessageQueue;
|
||||
IntReferenceMessageQueue(WindowObject->MessageQueue);
|
||||
WindowObject->Parent = (ParentWindow ? ParentWindow->Self : NULL);
|
||||
if((OwnerWindow = IntGetWindowObject(OwnerWindowHandle)))
|
||||
{
|
||||
@@ -2180,7 +2181,7 @@ NtUserDestroyWindow(HWND Wnd)
|
||||
if (Window->MessageQueue->CaptureWindow == Window->Self)
|
||||
Window->MessageQueue->CaptureWindow = NULL;
|
||||
IntUnLockMessageQueue(Window->MessageQueue);
|
||||
|
||||
IntDereferenceMessageQueue(Window->MessageQueue);
|
||||
/* Call hooks */
|
||||
#if 0 /* FIXME */
|
||||
if (HOOK_CallHooks(WH_CBT, HCBT_DESTROYWND, (WPARAM) hwnd, 0, TRUE))
|
||||
|
||||
Reference in New Issue
Block a user