From: Sebastien Pouliot Date: Wed, 22 Nov 2006 20:09:00 +0000 (-0000) Subject: 2006-11-22 Sebastien Pouliot X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=18873406d0ed61b3fbd5d8e28d5805e373521ae9;p=mono.git 2006-11-22 Sebastien Pouliot * GraphicsPath.cs: Better MonoTODO description. * LinearGradientBrush.cs: Better MonoTODO description. svn path=/trunk/mcs/; revision=68367 --- diff --git a/mcs/class/System.Drawing/System.Drawing.Drawing2D/ChangeLog b/mcs/class/System.Drawing/System.Drawing.Drawing2D/ChangeLog index 99ba939fc9d..346a1bfd0a5 100644 --- a/mcs/class/System.Drawing/System.Drawing.Drawing2D/ChangeLog +++ b/mcs/class/System.Drawing/System.Drawing.Drawing2D/ChangeLog @@ -1,3 +1,8 @@ +2006-11-22 Sebastien Pouliot + + * GraphicsPath.cs: Better MonoTODO description. + * LinearGradientBrush.cs: Better MonoTODO description. + 2006-08-10 Sebastien Pouliot * GraphicsPath.cs: Fix unit tests wrt libgdiplus return value change. diff --git a/mcs/class/System.Drawing/System.Drawing.Drawing2D/GraphicsPath.cs b/mcs/class/System.Drawing/System.Drawing.Drawing2D/GraphicsPath.cs index d9a20d0f207..f2ed22d1c05 100644 --- a/mcs/class/System.Drawing/System.Drawing.Drawing2D/GraphicsPath.cs +++ b/mcs/class/System.Drawing/System.Drawing.Drawing2D/GraphicsPath.cs @@ -604,7 +604,7 @@ namespace System.Drawing.Drawing2D GDIPlus.CheckStatus (status); } - [MonoTODO ("StringFormat isn't supported inside libgdiplus")] + [MonoTODO ("The StringFormat parameter is ignored when using libgdiplus.")] public void AddString (string s, FontFamily family, int style, float emSize, Point origin, StringFormat format) { Rectangle layout = new Rectangle (); @@ -613,7 +613,7 @@ namespace System.Drawing.Drawing2D AddString (s, family, style, emSize, layout, format); } - [MonoTODO ("StringFormat isn't supported inside libgdiplus")] + [MonoTODO ("The StringFormat parameter is ignored when using libgdiplus.")] public void AddString (string s, FontFamily family, int style, float emSize, PointF origin, StringFormat format) { RectangleF layout = new RectangleF (); @@ -622,7 +622,7 @@ namespace System.Drawing.Drawing2D AddString (s, family, style, emSize, layout, format); } - [MonoTODO ("layoutRect and StringFormat aren't supported inside libgdiplus")] + [MonoTODO ("The layoutRect and StringFormat parameters are ignored when using libgdiplus.")] public void AddString (string s, FontFamily family, int style, float emSize, Rectangle layoutRect, StringFormat format) { if (family == null) @@ -634,7 +634,7 @@ namespace System.Drawing.Drawing2D GDIPlus.CheckStatus (status); } - [MonoTODO ("layoutRect and StringFormat aren't supported inside libgdiplus")] + [MonoTODO ("The layoutRect and StringFormat parameters are ignored when using libgdiplus.")] public void AddString (string s, FontFamily family, int style, float emSize, RectangleF layoutRect, StringFormat format) { if (family == null) @@ -728,19 +728,19 @@ namespace System.Drawing.Drawing2D return IsOutlineVisible (x, y, pen, null); } - [MonoTODO ("Graphics parameter is currently ignored in libgdiplus")] + [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsOutlineVisible (Point pt, Pen pen, Graphics graphics) { return IsOutlineVisible (pt.X, pt.Y, pen, graphics); } - [MonoTODO ("Graphics parameter is currently ignored in libgdiplus")] + [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsOutlineVisible (PointF pt, Pen pen, Graphics graphics) { return IsOutlineVisible (pt.X, pt.Y, pen, graphics); } - [MonoTODO ("Graphics parameter is currently ignored in libgdiplus")] + [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsOutlineVisible (int x, int y, Pen pen, Graphics graphics) { if (pen == null) @@ -755,7 +755,7 @@ namespace System.Drawing.Drawing2D return result; } - [MonoTODO ("Graphics parameter is currently ignored in libgdiplus")] + [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsOutlineVisible (float x, float y, Pen pen, Graphics graphics) { if (pen == null) @@ -790,19 +790,19 @@ namespace System.Drawing.Drawing2D return IsVisible (x, y, null); } - [MonoTODO ("Graphics parameter is currently ignored in libgdiplus")] + [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsVisible (Point pt, Graphics graphics) { return IsVisible (pt.X, pt.Y, graphics); } - [MonoTODO ("Graphics parameter is currently ignored in libgdiplus")] + [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsVisible (PointF pt, Graphics graphics) { return IsVisible (pt.X, pt.Y, graphics); } - [MonoTODO ("Graphics parameter is currently ignored in libgdiplus")] + [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsVisible (int x, int y, Graphics graphics) { bool retval; @@ -816,7 +816,7 @@ namespace System.Drawing.Drawing2D return retval; } - [MonoTODO ("Graphics parameter is currently ignored in libgdiplus")] + [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsVisible (float x, float y, Graphics graphics) { bool retval; diff --git a/mcs/class/System.Drawing/System.Drawing.Drawing2D/LinearGradientBrush.cs b/mcs/class/System.Drawing/System.Drawing.Drawing2D/LinearGradientBrush.cs index 00277f547c4..45cb9bb9f31 100644 --- a/mcs/class/System.Drawing/System.Drawing.Drawing2D/LinearGradientBrush.cs +++ b/mcs/class/System.Drawing/System.Drawing.Drawing2D/LinearGradientBrush.cs @@ -141,7 +141,7 @@ namespace System.Drawing.Drawing2D { } } - [MonoTODO ("Not used inside libgdiplus")] + [MonoTODO ("The GammaCorrection value is ignored when using libgdiplus.")] public bool GammaCorrection { get { bool gammaCorrection;