mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[WIN32K][NTUSER] Specify constant name explicitly (#1067)
Reduce confusion by specifying the omitted constant HWND_TOP == 0.
This commit is contained in:
parent
62ec69278d
commit
f48eb70af3
1 changed files with 1 additions and 1 deletions
|
@ -3326,7 +3326,7 @@ NtUserSetWindowPos(
|
|||
RETURN(FALSE);
|
||||
}
|
||||
|
||||
if ( hWndInsertAfter &&
|
||||
if ( hWndInsertAfter != HWND_TOP &&
|
||||
hWndInsertAfter != HWND_BOTTOM &&
|
||||
hWndInsertAfter != HWND_TOPMOST &&
|
||||
hWndInsertAfter != HWND_NOTOPMOST )
|
||||
|
|
Loading…
Reference in a new issue