mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[NtUser]
- Since this is hiding the cursor, no window, just return. See CORE-9723. svn path=/trunk/; revision=67856
This commit is contained in:
parent
f0ffcaf0c8
commit
ba9580261a
1 changed files with 6 additions and 0 deletions
|
@ -23,6 +23,12 @@ co_IntDrawCaret(PWND pWnd, PTHRDCARETINFO CaretInfo)
|
||||||
HBITMAP hbmOld;
|
HBITMAP hbmOld;
|
||||||
BOOL bDone = FALSE;
|
BOOL bDone = FALSE;
|
||||||
|
|
||||||
|
if (pWnd == NULL)
|
||||||
|
{
|
||||||
|
TRACE("Null Window!\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
hdc = UserGetDCEx(pWnd, 0, DCX_USESTYLE | DCX_WINDOW);
|
hdc = UserGetDCEx(pWnd, 0, DCX_USESTYLE | DCX_WINDOW);
|
||||||
if (!hdc)
|
if (!hdc)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue