gdiplus: Correctly forward to GdipAddPathPie

Nikolay Sivov bunglehead at gmail.com
Mon Aug 3 03:27:15 CDT 2009


An obvious typo.

Changelog:
    - Correctly forward to GdipAddPathPie

>From 32b6b53b5a59ba444b9c7a7b287b259612a3d116 Mon Sep 17 00:00:00 2001
From: Nikolay Sivov <bunglehead at gmail.com>
Date: Mon, 3 Aug 2009 12:24:31 +0400
Subject: Correctly forward to GdipAddPathPie

---
 dlls/gdiplus/graphicspath.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/gdiplus/graphicspath.c b/dlls/gdiplus/graphicspath.c
index 1375cc3..94e17dd 100644
--- a/dlls/gdiplus/graphicspath.c
+++ b/dlls/gdiplus/graphicspath.c
@@ -775,7 +775,7 @@ GpStatus WINGDIPAPI GdipAddPathPieI(GpPath *path, INT x, INT y, INT width, INT h
     TRACE("(%p, %d, %d, %d, %d, %.2f, %.2f)\n",
           path, x, y, width, height, startAngle, sweepAngle);
 
-    return GdipAddPathPieI(path, (REAL)x, (REAL)y, (REAL)width, (REAL)height, startAngle, sweepAngle);
+    return GdipAddPathPie(path, (REAL)x, (REAL)y, (REAL)width, (REAL)height, startAngle, sweepAngle);
 }
 
 GpStatus WINGDIPAPI GdipAddPathPolygon(GpPath *path, GDIPCONST GpPointF *points, INT count)
-- 
1.5.6.5





More information about the wine-patches mailing list