Module: wine Branch: master Commit: d83ae0ef40f047ee6748d3312c9c88979123944e URL: http://source.winehq.org/git/wine.git/?a=commit;h=d83ae0ef40f047ee6748d3312c...
Author: André Hentschel nerv@dawncrow.de Date: Fri Nov 21 20:58:58 2014 +0100
gdi32: Remove unused function (Clang).
---
dlls/gdi32/font.c | 10 ---------- 1 file changed, 10 deletions(-)
diff --git a/dlls/gdi32/font.c b/dlls/gdi32/font.c index d9bb43a..8f52053 100644 --- a/dlls/gdi32/font.c +++ b/dlls/gdi32/font.c @@ -81,16 +81,6 @@ static inline INT height_to_LP( DC *dc, INT height ) return GDI_ROUND( (double)height * fabs( dc->xformVport2World.eM22 )); }
-static inline INT INTERNAL_XWSTODS(DC *dc, INT width) -{ - POINT pt[2]; - pt[0].x = pt[0].y = 0; - pt[1].x = width; - pt[1].y = 0; - LPtoDP(dc->hSelf, pt, 2); - return pt[1].x - pt[0].x; -} - static inline INT INTERNAL_YWSTODS(DC *dc, INT height) { POINT pt[2];