Nikolay Sivov : gdiplus: GdipFillRegion actually belongs to Graphics.

Alexandre Julliard julliard at winehq.org
Fri Jul 11 08:44:04 CDT 2008


Module: wine
Branch: master
Commit: 0e840f6186347af699491bb0c40abf944f277ec0
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=0e840f6186347af699491bb0c40abf944f277ec0

Author: Nikolay Sivov <bunglehead at gmail.com>
Date:   Thu Jul 10 23:15:59 2008 +0400

gdiplus: GdipFillRegion actually belongs to Graphics.

---

 dlls/gdiplus/graphics.c |   11 +++++++++++
 dlls/gdiplus/region.c   |   11 -----------
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index c127dbb..b6766d8 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -2114,6 +2114,17 @@ GpStatus WINGDIPAPI GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush, GD
     return ret;
 }
 
+GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
+        GpRegion* region)
+{
+    if (!(graphics && brush && region))
+        return InvalidParameter;
+
+    FIXME("(%p, %p, %p): stub\n", graphics, brush, region);
+
+    return NotImplemented;
+}
+
 GpStatus WINGDIPAPI GdipFlush(GpGraphics *graphics, GpFlushIntention intention)
 {
     static int calls;
diff --git a/dlls/gdiplus/region.c b/dlls/gdiplus/region.c
index 76126ef..fc53c86 100644
--- a/dlls/gdiplus/region.c
+++ b/dlls/gdiplus/region.c
@@ -162,17 +162,6 @@ GpStatus WINGDIPAPI GdipDeleteRegion(GpRegion *region)
     return NotImplemented;
 }
 
-GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
-        GpRegion* region)
-{
-    if (!(graphics && brush && region))
-        return InvalidParameter;
-
-    FIXME("(%p, %p, %p): stub\n", graphics, brush, region);
-
-    return NotImplemented;
-}
-
 GpStatus WINGDIPAPI GdipGetRegionBounds(GpRegion *region, GpGraphics *graphics, GpRectF *rect)
 {
     FIXME("(%p, %p, %p): stub\n", region, graphics, rect);




More information about the wine-cvs mailing list