mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
fixed IntFindWindowToRepaint() so it only returns handles to child windows that belong to the calling thread
svn path=/trunk/; revision=7335
This commit is contained in:
parent
2e3675731a
commit
7ff3d66ade
1 changed files with 3 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*
|
||||
* $Id: painting.c,v 1.56 2003/12/30 16:55:00 weiden Exp $
|
||||
* $Id: painting.c,v 1.57 2003/12/30 18:19:20 weiden Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -648,7 +648,8 @@ IntFindWindowToRepaint(HWND hWnd, PW32THREAD Thread)
|
|||
if (Child->Style & WS_VISIBLE &&
|
||||
(Child->UpdateRegion != NULL ||
|
||||
Child->Flags & WINDOWOBJECT_NEED_INTERNALPAINT ||
|
||||
Child->Flags & WINDOWOBJECT_NEED_NCPAINT))
|
||||
Child->Flags & WINDOWOBJECT_NEED_NCPAINT)
|
||||
&& IntWndBelongsToThread(Child, Thread))
|
||||
{
|
||||
hFoundWnd = Child->Self;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue