From dfd2c8407e18c01f1d5e3139363955ccae559a75 Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Tue, 30 Oct 2007 17:49:57 +0000 Subject: 2007-10-30 Sebastien Pouliot * GraphicsPath.cs: Remove some TODO specific to libgdiplus. svn path=/trunk/mcs/; revision=88485 --- mcs/class/System.Drawing/System.Drawing.Drawing2D/ChangeLog | 4 ++++ .../System.Drawing/System.Drawing.Drawing2D/GraphicsPath.cs | 10 +--------- 2 files changed, 5 insertions(+), 9 deletions(-) (limited to 'mcs/class/System.Drawing') diff --git a/mcs/class/System.Drawing/System.Drawing.Drawing2D/ChangeLog b/mcs/class/System.Drawing/System.Drawing.Drawing2D/ChangeLog index 9a56f67200e..28735fbd684 100644 --- a/mcs/class/System.Drawing/System.Drawing.Drawing2D/ChangeLog +++ b/mcs/class/System.Drawing/System.Drawing.Drawing2D/ChangeLog @@ -1,3 +1,7 @@ +2007-10-30 Sebastien Pouliot + + * GraphicsPath.cs: Remove some TODO specific to libgdiplus. + 2007-05-21 Adar Wesley * Matrix.jvm.cs: changed MemberwiseClone to clone. diff --git a/mcs/class/System.Drawing/System.Drawing.Drawing2D/GraphicsPath.cs b/mcs/class/System.Drawing/System.Drawing.Drawing2D/GraphicsPath.cs index f2ed22d1c05..f6a7def733c 100644 --- a/mcs/class/System.Drawing/System.Drawing.Drawing2D/GraphicsPath.cs +++ b/mcs/class/System.Drawing/System.Drawing.Drawing2D/GraphicsPath.cs @@ -9,7 +9,7 @@ // Ravindra (rkumar@novell.com) // Sebastien Pouliot // -// Copyright (C) 2004,2006 Novell, Inc (http://www.novell.com) +// Copyright (C) 2004,2006-2007 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the @@ -728,19 +728,16 @@ namespace System.Drawing.Drawing2D return IsOutlineVisible (x, y, pen, null); } - [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 ("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 ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsOutlineVisible (int x, int y, Pen pen, Graphics graphics) { if (pen == null) @@ -755,7 +752,6 @@ namespace System.Drawing.Drawing2D return result; } - [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 +786,16 @@ namespace System.Drawing.Drawing2D return IsVisible (x, y, null); } - [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsVisible (Point pt, Graphics graphics) { return IsVisible (pt.X, pt.Y, graphics); } - [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsVisible (PointF pt, Graphics graphics) { return IsVisible (pt.X, pt.Y, graphics); } - [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsVisible (int x, int y, Graphics graphics) { bool retval; @@ -816,7 +809,6 @@ namespace System.Drawing.Drawing2D return retval; } - [MonoTODO ("The Graphics parameter is ignored when using libgdiplus.")] public bool IsVisible (float x, float y, Graphics graphics) { bool retval; -- cgit v1.2.3