gdi32: Don't print fixme more than once.

This commit is contained in:
Evan Stade 2007-08-02 17:51:40 -07:00 committed by Alexandre Julliard
parent 3c1c89eb6e
commit cf8b59ef81
1 changed files with 3 additions and 1 deletions

View File

@ -1172,6 +1172,7 @@ BOOL WINAPI PlayEnhMetaFileRecord(
case EMR_EXTSELECTCLIPRGN:
{
static int extselectcliprgn_cases;
#if 0
const EMREXTSELECTCLIPRGN lpRgn = (const EMREXTSELECTCLIPRGN *)mr;
HRGN hRgn = ExtCreateRegion(NULL, lpRgn->cbRgnData, (RGNDATA *)lpRgn->RgnData);
@ -1180,7 +1181,8 @@ BOOL WINAPI PlayEnhMetaFileRecord(
/* ExtSelectClipRgn created a copy of the region */
DeleteObject(hRgn);
#endif
FIXME("ExtSelectClipRgn\n");
if(!(extselectcliprgn_cases++))
FIXME("ExtSelectClipRgn\n");
break;
}