From 6531ed6cf121ca07311418ea108beb229d1e8081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Tue, 3 Feb 2004 09:44:35 +0000 Subject: [PATCH] Deactivate last change since it can cause a FastMutex to be recursively acquired svn path=/trunk/; revision=8009 --- reactos/subsys/win32k/ntuser/winpos.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/subsys/win32k/ntuser/winpos.c b/reactos/subsys/win32k/ntuser/winpos.c index 2aa13143e53..e3742024c50 100644 --- a/reactos/subsys/win32k/ntuser/winpos.c +++ b/reactos/subsys/win32k/ntuser/winpos.c @@ -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;