Quellcode durchsuchen

use correct object in Widen

svn path=/trunk/mcs/; revision=49106
Konstantin Triger vor 20 Jahren
Ursprung
Commit
04ea725ffc

+ 4 - 0
mcs/class/System.Drawing/System.Drawing.Drawing2D/ChangeLog

@@ -1,3 +1,7 @@
+2005-08-30 Konstantin Triger <[email protected]>
+
+        * GraphicsPath.jvm.cs: use correct object in Widen
+
 2005-08-28 Vladimir Krasnov <[email protected]>
 
 	* Added: GraphicsContainer.jvm.cs

+ 1 - 1
mcs/class/System.Drawing/System.Drawing.Drawing2D/GraphicsPath.jvm.cs

@@ -1006,7 +1006,7 @@ namespace System.Drawing.Drawing2D
 			if (pen == null)
 				throw new ArgumentNullException("pen");
 
-			Shape = new GeneralPath(((Stroke)pen).createStrokedShape(this));
+			Shape = new ExtendedGeneralPath(((Stroke)pen).createStrokedShape(this));
 			Flatten(matrix, flatness);
 		} 
 		#endregion