From c27ffbed0ccd30414a37aefebf74fbf5cf48254c Mon Sep 17 00:00:00 2001 From: James Tabor Date: Tue, 21 Aug 2007 07:45:02 +0000 Subject: [PATCH] Sorry missed this one. Turn it off. svn path=/trunk/; revision=28445 --- reactos/dll/win32/gdi32/objects/coord.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/dll/win32/gdi32/objects/coord.c b/reactos/dll/win32/gdi32/objects/coord.c index 94aaadd944b..3502babc7a5 100644 --- a/reactos/dll/win32/gdi32/objects/coord.c +++ b/reactos/dll/win32/gdi32/objects/coord.c @@ -121,7 +121,7 @@ BOOL STDCALL LPtoDP ( HDC hDC, LPPOINT Points, INT Count ) { -//#if 0 +#if 0 INT i; PDC_ATTR Dc_Attr; @@ -130,16 +130,16 @@ LPtoDP ( HDC hDC, LPPOINT Points, INT Count ) if (Dc_Attr->flXform & ( PAGE_XLATE_CHANGED | // Check for Changes and Updates PAGE_EXTENTS_CHANGED | WORLD_XFORM_CHANGED )) -//#endif +#endif return NtGdiTransformPoints( hDC, Points, Points, Count, GdiLpToDp); // LPtoDP mode -//#if 0 +#if 0 else { for ( i = 0; i < Count; i++ ) CoordCnvP ( &Dc_Attr->mxWorldToDevice, &Points[i] ); } return TRUE; -//#endif +#endif }