Commit 2563b1b7 authored by Joerg Mayer's avatar Joerg Mayer Committed by Alexandre Julliard

Warn when FindWindow needs to check other processes windows.

parent dae3f675
......@@ -1562,6 +1562,10 @@ static HWND WIN_FindWindow( HWND parent, HWND child, ATOM className,
}
}
retvalue = 0;
/* In this case we need to check whether other processes
own a window with the given paramters on the Desktop,
but we don't, so let's at least warn about it */
FIXME("Returning 0 without checking other processes\n");
end:
WIN_ReleaseWndPtr(pWnd);
return retvalue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment