From 4c4c630bf3463bf244c3d25574589e9b87831631 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Thu, 24 Feb 2011 00:48:01 +0000 Subject: [PATCH] =?UTF-8?q?[WIN32K]=20Patch=20by=20Rafa=C5=82=20Harabie?= =?UTF-8?q?=C5=84=20:=20-=20don't=20transform=20cordinates=20twice=20in=20?= =?UTF-8?q?GreExtTextOutW=20-=20Fixes=20AbiWord=20toolbar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See issue #4811 for more details. svn path=/trunk/; revision=50885 --- reactos/subsystems/win32/win32k/objects/freetype.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/reactos/subsystems/win32/win32k/objects/freetype.c b/reactos/subsystems/win32/win32k/objects/freetype.c index 21a0883c2da..d67405bc12c 100644 --- a/reactos/subsystems/win32/win32k/objects/freetype.c +++ b/reactos/subsystems/win32/win32k/objects/freetype.c @@ -3248,8 +3248,6 @@ GreExtTextOutW( DestRect.right = lprc->right; DestRect.bottom = lprc->bottom; - IntLPtoDP(dc, (LPPOINT)&DestRect, 2); - DestRect.left += dc->ptlDCOrig.x; DestRect.top += dc->ptlDCOrig.y; DestRect.right += dc->ptlDCOrig.x;