Fixed GetTextExtentPointI driver usage.

oldstable
Alexandre Julliard 2002-04-05 21:23:36 +00:00
parent 58854430fa
commit ce73456d80
1 changed files with 1 additions and 1 deletions

View File

@ -1125,7 +1125,7 @@ BOOL WINAPI GetTextExtentPointI(
}
else if(dc->funcs->pGetTextExtentPoint) {
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 );