gdi32: Print the fixme when the pen is actually hatched.
This commit is contained in:
parent
84fbe5db0e
commit
c8c467155d
|
@ -182,7 +182,7 @@ HPEN WINAPI ExtCreatePen( DWORD style, DWORD width,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (brush->lbHatch && ((brush->lbStyle == BS_SOLID) || (brush->lbStyle == BS_HOLLOW)))
|
if (brush->lbHatch && ((brush->lbStyle != BS_SOLID) && (brush->lbStyle != BS_HOLLOW)))
|
||||||
{
|
{
|
||||||
static int fixme_hatches_shown;
|
static int fixme_hatches_shown;
|
||||||
if (!fixme_hatches_shown++) FIXME("Hatches not implemented\n");
|
if (!fixme_hatches_shown++) FIXME("Hatches not implemented\n");
|
||||||
|
|
Loading…
Reference in New Issue