Austin English : gdi32: Quiet a noisy fixme.

Alexandre Julliard julliard at winehq.org
Fri Oct 17 07:26:12 CDT 2008


Module: wine
Branch: master
Commit: 3b6daf251272f2c5d445e4a4616bb287be95ea66
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3b6daf251272f2c5d445e4a4616bb287be95ea66

Author: Austin English <austinenglish at gmail.com>
Date:   Thu Oct 16 19:09:56 2008 -0500

gdi32: Quiet a noisy fixme.

---

 dlls/gdi32/font.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dlls/gdi32/font.c b/dlls/gdi32/font.c
index 21d2ebb..7b8d97d 100644
--- a/dlls/gdi32/font.c
+++ b/dlls/gdi32/font.c
@@ -1648,14 +1648,17 @@ BOOL WINAPI ExtTextOutW( HDC hdc, INT x, INT y, UINT flags,
     DWORD type;
     DC * dc = get_dc_ptr( hdc );
     INT breakRem;
+    static int quietfixme = 0;
 
     if (!dc) return FALSE;
 
     breakRem = dc->breakRem;
 
-    if (flags & (ETO_NUMERICSLOCAL | ETO_NUMERICSLATIN | ETO_PDY))
+    if (quietfixme == 0 && flags & (ETO_NUMERICSLOCAL | ETO_NUMERICSLATIN | ETO_PDY))
+    {
         FIXME("flags ETO_NUMERICSLOCAL | ETO_NUMERICSLATIN | ETO_PDY unimplemented\n");
-
+        quietfixme = 1;
+    }
     if (!dc->funcs->pExtTextOut && !PATH_IsPathOpen(dc->path))
     {
         release_dc_ptr( dc );




More information about the wine-cvs mailing list