From 507daae427b408cf335a79a86b22e12d6fb643dd Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Mon, 7 Jan 2008 22:13:19 +0000 Subject: [PATCH] gdiplus: Remove unneeded casts. --- dlls/gdiplus/gdiplus.c | 7 +++---- dlls/gdiplus/graphicspath.c | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/dlls/gdiplus/gdiplus.c b/dlls/gdiplus/gdiplus.c index e8499c6897b..fb38497084c 100644 --- a/dlls/gdiplus/gdiplus.c +++ b/dlls/gdiplus/gdiplus.c @@ -235,10 +235,9 @@ COLORREF ARGB2COLORREF(ARGB color) ARGB: aarrggbb FIXME:doesn't handle alpha channel */ - return (COLORREF) - ((color & 0x0000ff) << 16) + - (color & 0x00ff00) + - ((color & 0xff0000) >> 16); + return ((color & 0x0000ff) << 16) + + (color & 0x00ff00) + + ((color & 0xff0000) >> 16); } /* Like atan2, but puts angle in correct quadrant if dx is 0. */ diff --git a/dlls/gdiplus/graphicspath.c b/dlls/gdiplus/graphicspath.c index ed71400ab62..2a2d96c0b3d 100644 --- a/dlls/gdiplus/graphicspath.c +++ b/dlls/gdiplus/graphicspath.c @@ -570,6 +570,6 @@ GpStatus WINGDIPAPI GdipTransformPath(GpPath *path, GpMatrix *matrix) if(path->pathdata.Count == 0) return Ok; - return GdipTransformMatrixPoints(matrix, (GpPointF*) path->pathdata.Points, + return GdipTransformMatrixPoints(matrix, path->pathdata.Points, path->pathdata.Count); } -- 2.11.4.GIT