From: Jeff R. <jef...@us...> - 2005-11-19 03:13:37
|
Update of /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12283/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paint Modified Files: SvgMarkerElement.cs Log Message: Library wide changes for scripting support and automated re-rendering Index: SvgMarkerElement.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorObjectModel/SharpVectors/dom/svg/Paint/SvgMarkerElement.cs,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- SvgMarkerElement.cs 27 May 2003 20:44:04 -0000 1.10 +++ SvgMarkerElement.cs 19 Nov 2005 03:13:23 -0000 1.11 @@ -85,7 +85,7 @@ type = SvgMarkerUnit.StrokeWidth; break; } - markerUnits = new SvgAnimatedEnumeration(type); + markerUnits = new SvgAnimatedEnumeration((ushort)type); } return markerUnits; } @@ -135,11 +135,11 @@ { if(GetAttribute("orient") == "auto") { - orientType = new SvgAnimatedEnumeration(SvgMarkerOrient.Auto); + orientType = new SvgAnimatedEnumeration((ushort)SvgMarkerOrient.Auto); } else { - orientType = new SvgAnimatedEnumeration(SvgMarkerOrient.Angle); + orientType = new SvgAnimatedEnumeration((ushort)SvgMarkerOrient.Angle); } } return orientType; |