Vincent Povirk : gdiplus: Remove fixme from GdipImageGetFrameDimensionsCount.

Alexandre Julliard julliard at winehq.org
Mon Dec 28 09:16:03 CST 2009


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

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Thu Dec 24 15:52:02 2009 -0500

gdiplus: Remove fixme from GdipImageGetFrameDimensionsCount.

---

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

diff --git a/dlls/gdiplus/image.c b/dlls/gdiplus/image.c
index 9858f33..2716a34 100644
--- a/dlls/gdiplus/image.c
+++ b/dlls/gdiplus/image.c
@@ -1725,13 +1725,13 @@ GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image,
 GpStatus WINGDIPAPI GdipImageGetFrameDimensionsCount(GpImage *image,
     UINT* count)
 {
+    /* Native gdiplus 1.1 does not yet support multiple frame dimensions. */
+
     if(!image || !count)
         return InvalidParameter;
 
     *count = 1;
 
-    FIXME("stub\n");
-
     return Ok;
 }
 




More information about the wine-cvs mailing list