Change GetTransform stub to use the standard FIXME rather than ERR.

oldstable
Mike Hearn 2004-01-12 21:10:48 +00:00 committed by Alexandre Julliard
parent 446368333c
commit 8e9267e267
1 changed files with 1 additions and 1 deletions

View File

@ -1033,7 +1033,7 @@ BOOL WINAPI GetWorldTransform( HDC hdc, LPXFORM xform )
BOOL WINAPI GetTransform( HDC hdc, DWORD unknown, LPXFORM xform )
{
if (unknown == 0x0203) return GetWorldTransform( hdc, xform );
ERR("stub: don't know what to do for code %lx\n", unknown );
FIXME("stub: don't know what to do for code %lx\n", unknown );
return FALSE;
}