mirror of
https://github.com/reactos/reactos.git
synced 2025-06-04 08:50:27 +00:00
roll back thomas's change, apparently it IS causing the problems, my build system is just being stupid.
svn path=/trunk/; revision=8244
This commit is contained in:
parent
14f2cc4e3b
commit
9cff9f7701
1 changed files with 3 additions and 3 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: winpos.c,v 1.89 2004/02/17 17:43:09 weiden Exp $
|
||||
/* $Id: winpos.c,v 1.90 2004/02/18 12:21:57 rcampbell Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -1246,7 +1246,7 @@ WinPosSearchChildren(PWINDOW_OBJECT ScopeWin, POINT Point,
|
|||
PWINDOW_OBJECT Current;
|
||||
|
||||
ExAcquireFastMutexUnsafe(&ScopeWin->ChildrenListLock);
|
||||
Current = ScopeWin->LastChild;
|
||||
Current = ScopeWin->FirstChild;
|
||||
while (Current)
|
||||
{
|
||||
if (Current->Style & WS_VISIBLE &&
|
||||
|
@ -1278,7 +1278,7 @@ WinPosSearchChildren(PWINDOW_OBJECT ScopeWin, POINT Point,
|
|||
ExReleaseFastMutexUnsafe(&ScopeWin->ChildrenListLock);
|
||||
return(0);
|
||||
}
|
||||
Current = Current->PrevSibling;
|
||||
Current = Current->NextSibling;
|
||||
}
|
||||
|
||||
ExReleaseFastMutexUnsafe(&ScopeWin->ChildrenListLock);
|
||||
|
|
Loading…
Reference in a new issue