mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 12:04:51 +00:00
Prevent some debug messages from appearing
svn path=/trunk/; revision=8102
This commit is contained in:
parent
feb6118e10
commit
30ada1654d
1 changed files with 9 additions and 3 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: windc.c,v 1.55 2004/02/05 23:16:37 gvg Exp $
|
/* $Id: windc.c,v 1.56 2004/02/08 22:02:40 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -742,9 +742,15 @@ DceResetActiveDCEs(PWINDOW_OBJECT Window, int DeltaX, int DeltaY)
|
||||||
{
|
{
|
||||||
dc->w.DCOrgX += DeltaX;
|
dc->w.DCOrgX += DeltaX;
|
||||||
dc->w.DCOrgY += DeltaY;
|
dc->w.DCOrgY += DeltaY;
|
||||||
|
if (NULL != dc->w.hClipRgn)
|
||||||
|
{
|
||||||
NtGdiOffsetRgn(dc->w.hClipRgn, DeltaX, DeltaY);
|
NtGdiOffsetRgn(dc->w.hClipRgn, DeltaX, DeltaY);
|
||||||
|
}
|
||||||
|
if (NULL != pDCE->hClipRgn)
|
||||||
|
{
|
||||||
NtGdiOffsetRgn(pDCE->hClipRgn, DeltaX, DeltaY);
|
NtGdiOffsetRgn(pDCE->hClipRgn, DeltaX, DeltaY);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
DC_UnlockDc(pDCE->hDC);
|
DC_UnlockDc(pDCE->hDC);
|
||||||
|
|
||||||
DceUpdateVisRgn(pDCE, CurrentWindow, pDCE->DCXFlags);
|
DceUpdateVisRgn(pDCE, CurrentWindow, pDCE->DCXFlags);
|
||||||
|
|
Loading…
Reference in a new issue