Deactivate last change since it can cause a FastMutex to be recursively

acquired

svn path=/trunk/; revision=8009
This commit is contained in:
Gé van Geldorp 2004-02-03 09:44:35 +00:00
parent 11c1fc3591
commit 6531ed6cf1

View file

@ -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.85 2004/02/02 22:09:05 gvg Exp $
/* $Id: winpos.c,v 1.86 2004/02/03 09:44:35 gvg Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -599,7 +599,9 @@ WinPosInternalMoveWindow(PWINDOW_OBJECT Window, INT MoveX, INT MoveY)
Window->ClientRect.top += MoveY;
Window->ClientRect.bottom += MoveY;
#if 0
DceMoveDCE(Window->Self, MoveX, MoveY);
#endif
ExAcquireFastMutexUnsafe(&Window->ChildrenListLock);
Child = Window->FirstChild;