mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +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:
parent
663bb3a53e
commit
e7c2fa1d9c
1 changed files with 2 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue