mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:23:01 +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);
|
TRACE("Clipboard: WM_DESTROYCLIPBOARD to %p\n", pWinStaObj->spwndClipOwner->head.h);
|
||||||
// For 32-bit applications this message is sent as a notification
|
// 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;
|
pWinStaObj->spwndClipOwner = pWinStaObj->spwndClipOpen;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue