mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
Spout a FIXME if we try to call ExtTextOut on an open path.
This commit is contained in:
parent
b88f72465a
commit
8a32613886
@ -168,7 +168,9 @@ BOOL WINAPI ExtTextOutW( HDC hdc, INT x, INT y, UINT flags,
|
||||
DC * dc = DC_GetDCUpdate( hdc );
|
||||
if (dc)
|
||||
{
|
||||
if(dc->funcs->pExtTextOut)
|
||||
if(PATH_IsPathOpen(dc->path))
|
||||
FIXME("called on an open path\n");
|
||||
else if(dc->funcs->pExtTextOut)
|
||||
ret = dc->funcs->pExtTextOut(dc->physDev,x,y,flags,lprect,str,count,lpDx);
|
||||
GDI_ReleaseObj( hdc );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user