From 91e25632da8496bb5c46c4cdfb5beff434f7c933 Mon Sep 17 00:00:00 2001 From: Richard Campbell Date: Thu, 24 Jul 2003 16:56:59 +0000 Subject: [PATCH] W32kGetTextExtentExPoint now calls W32kGetTextExtentPoint. This isn't the correct way of doing things, but it fixes a few bugs and allows more apps to load. (specifically the samplewindow test and static window test) svn path=/trunk/; revision=5248 --- reactos/subsys/win32k/objects/text.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/objects/text.c b/reactos/subsys/win32k/objects/text.c index 60b34e25028..e0edd94afc1 100644 --- a/reactos/subsys/win32k/objects/text.c +++ b/reactos/subsys/win32k/objects/text.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: text.c,v 1.35 2003/07/21 17:43:46 jimtabor Exp $ */ +/* $Id: text.c,v 1.36 2003/07/24 16:56:59 rcampbell Exp $ */ #undef WIN32_LEAN_AND_MEAN @@ -646,7 +646,7 @@ W32kGetTextExtentExPoint(HDC hDC, LPINT Dx, LPSIZE Size) { - UNIMPLEMENTED; + return W32kGetTextExtentPoint(hDC, String, Count, Size); } BOOL