Commit 8e9267e2 authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

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

parent 44636833
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment