gdi: Show hatch brush FIXME only once.

This commit is contained in:
Uwe Bonnes 2006-02-09 12:22:09 +01:00 committed by Alexandre Julliard
parent 990e20c992
commit ee0e13923f
1 changed files with 5 additions and 2 deletions

View File

@ -154,8 +154,11 @@ HPEN WINAPI ExtCreatePen( DWORD style, DWORD width,
return 0;
}
if (brush->lbHatch && ((brush->lbStyle == BS_SOLID) || (brush->lbStyle == BS_HOLLOW)))
FIXME("Hatches not implemented\n");
if (brush->lbHatch && ((brush->lbStyle == BS_SOLID) || (brush->lbStyle == BS_HOLLOW)))
{
static int fixme_hatches_shown;
if (!fixme_hatches_shown++) FIXME("Hatches not implemented\n");
}
}
else
{