mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Deactivate last change since it can cause a FastMutex to be recursively
acquired svn path=/trunk/; revision=8009
This commit is contained in:
parent
11c1fc3591
commit
6531ed6cf1
1 changed files with 3 additions and 1 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.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;
|
||||
|
|
Loading…
Reference in a new issue