mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
[NTUSER] Demote ERR to TRACE, also some minor corrections (#3132)
This commit is contained in:
parent
fb529605a6
commit
9f428f5522
1 changed files with 3 additions and 3 deletions
|
@ -800,7 +800,7 @@ static LRESULT handle_internal_message( PWND pWnd, UINT msg, WPARAM wparam, LPAR
|
|||
}
|
||||
case WM_ASYNC_DESTROYWINDOW:
|
||||
{
|
||||
ERR("WM_ASYNC_DESTROYWINDOW\n");
|
||||
TRACE("WM_ASYNC_DESTROYWINDOW\n");
|
||||
if (pWnd->style & WS_CHILD)
|
||||
return co_UserFreeWindow(pWnd, PsGetCurrentProcessWin32Process(), PsGetCurrentThreadWin32Thread(), TRUE);
|
||||
else
|
||||
|
@ -1867,8 +1867,8 @@ co_IntSendMessageWithCallBack( HWND hWnd,
|
|||
|
||||
if(!(Message = AllocateUserMessage(FALSE)))
|
||||
{
|
||||
ERR("MsqSendMessage(): Not enough memory to allocate a message");
|
||||
RETURN( FALSE);
|
||||
ERR("MsqSendMessage(): Not enough memory to allocate a message\n");
|
||||
RETURN(FALSE);
|
||||
}
|
||||
|
||||
Message->Msg.hwnd = hWnd;
|
||||
|
|
Loading…
Reference in a new issue