mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Fix MSVC issue.
svn path=/trunk/; revision=34271
This commit is contained in:
parent
ef1ec36884
commit
71b125ad4f
1 changed files with 2 additions and 1 deletions
|
@ -108,7 +108,8 @@ co_IntSendActivateMessages(HWND hWndPrev, HWND hWnd, BOOL MouseActivate)
|
|||
|
||||
if (OldTID != NewTID)
|
||||
{
|
||||
if ((List = IntWinListChildren(UserGetWindowObject(IntGetDesktopWindow()))))
|
||||
List = IntWinListChildren(UserGetWindowObject(IntGetDesktopWindow()));
|
||||
if (List)
|
||||
{
|
||||
for (phWnd = List; *phWnd; ++phWnd)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue