commit | ce73456d80ea6d6837bcd2f8f9834e4f6acfe0b4 | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Fri Apr 05 21:23:36 2002 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Apr 05 21:23:36 2002 +0000 |
tree | 935fd9e86a4ae6ddbac1472d7b1807ccde8c1e34 | |
parent | 58854430faa0d9f0ddd65fb385925804d86361b5 [diff] |
Fixed GetTextExtentPointI driver usage.
diff --git a/objects/font.c b/objects/font.c index 99264d4..ecadda5 100644 --- a/objects/font.c +++ b/objects/font.c
@@ -1125,7 +1125,7 @@ } 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 );