Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2007-10-30 20:49:57 +0300
committerSebastien Pouliot <sebastien@ximian.com>2007-10-30 20:49:57 +0300
commitdfd2c8407e18c01f1d5e3139363955ccae559a75 (patch)
treed94b158c66fb3fc01ca0b857c2ccadc3e7c61680 /mcs/class/System.Drawing
parentd1af9e6aaf532260ba336afa9552c225c7e1eb42 (diff)
2007-10-30 Sebastien Pouliot <sebastien@ximian.com>
* GraphicsPath.cs: Remove some TODO specific to libgdiplus. svn path=/trunk/mcs/; revision=88485
Diffstat (limited to 'mcs/class/System.Drawing')
-rw-r--r--mcs/class/System.Drawing/System.Drawing.Drawing2D/ChangeLog4
-rw-r--r--mcs/class/System.Drawing/System.Drawing.Drawing2D/GraphicsPath.cs10
2 files changed, 5 insertions, 9 deletions
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 <sebastien@ximian.com>
+
+ * GraphicsPath.cs: Remove some TODO specific to libgdiplus.
+
2007-05-21 Adar Wesley <adarw@mainsoft.com>
* 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 <sebastien@ximian.com>
//
-// 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;