gdi32: Quiet a noisy fixme.

This commit is contained in:
Austin English 2008-10-16 19:09:56 -05:00 committed by Alexandre Julliard
parent d7944ae177
commit 3b6daf2512
1 changed files with 5 additions and 2 deletions

View File

@ -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 );