This commit is contained in:
2011-07-29 13:31:42 +00:00
parent 3a7be58c6e
commit ec9b80d6a3
2 changed files with 40 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ using System.Xml;
namespace fmtxml
{
public class RtfToSvg
public partial class RtfToSvg
{
public RtfToSvg(string rtfFileName)
{
@@ -334,6 +334,7 @@ namespace fmtxml
if (outFile.Exists) outFile.Delete();
XmlDocument xDoc = new XmlDocument();
xDoc.LoadXml(Svg);
AppendPlantSpecific(svgFileName, xDoc);
xDoc.Save(outFile.FullName);
}
}