mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 21:48:10 +00:00
[WIN32K] -NtUserEmptyClipboard: Change its behaviour to wait for WM_DESTROYCLIPBOARD to return so it behaves like windows and our ole32 doesn't trip on its assumptions that everything works fine. A test will be written soon to prove that this is correct. CORE-12302
svn path=/trunk/; revision=75616
This commit is contained in:
parent
44fc547ffa
commit
8998ffaca2
1 changed files with 1 additions and 1 deletions
|
@ -680,7 +680,7 @@ UserEmptyClipboard(VOID)
|
|||
{
|
||||
TRACE("Clipboard: WM_DESTROYCLIPBOARD to %p\n", pWinStaObj->spwndClipOwner->head.h);
|
||||
// For 32-bit applications this message is sent as a notification
|
||||
co_IntSendMessageNoWait(pWinStaObj->spwndClipOwner->head.h, WM_DESTROYCLIPBOARD, 0, 0);
|
||||
co_IntSendMessage(pWinStaObj->spwndClipOwner->head.h, WM_DESTROYCLIPBOARD, 0, 0);
|
||||
}
|
||||
|
||||
pWinStaObj->spwndClipOwner = pWinStaObj->spwndClipOpen;
|
||||
|
|
Loading…
Reference in a new issue