Commit ce73456d authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed GetTextExtentPointI driver usage.

parent 58854430
...@@ -1125,7 +1125,7 @@ BOOL WINAPI GetTextExtentPointI( ...@@ -1125,7 +1125,7 @@ BOOL WINAPI GetTextExtentPointI(
} }
else if(dc->funcs->pGetTextExtentPoint) { else if(dc->funcs->pGetTextExtentPoint) {
FIXME("calling GetTextExtentPoint\n"); FIXME("calling GetTextExtentPoint\n");
ret = dc->funcs->pGetTextExtentPoint( dc, (LPCWSTR)indices, count, size ); ret = dc->funcs->pGetTextExtentPoint( dc->physDev, (LPCWSTR)indices, count, size );
} }
GDI_ReleaseObj( hdc ); GDI_ReleaseObj( hdc );
......
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