diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-10-11 15:24:42 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-10-11 15:24:42 +0000 |
commit | df6f199b4e158d1d6cfb99d45258efa22afee715 (patch) | |
tree | 05b623c1711826d94ff0c8633ca789b1bae4146d /src/xmlfilewriter.cpp | |
parent | 67c0930cbe7d0646cf4e4dee157ea553ee8a045a (diff) | |
download | libbu++-df6f199b4e158d1d6cfb99d45258efa22afee715.tar.gz libbu++-df6f199b4e158d1d6cfb99d45258efa22afee715.tar.bz2 libbu++-df6f199b4e158d1d6cfb99d45258efa22afee715.tar.xz libbu++-df6f199b4e158d1d6cfb99d45258efa22afee715.zip |
Fixed a wierd bug that caused each element of any part of a copied node tree to
be partially cross-linked to the node that was the root of the copy. Also fixed
a bug in the xmlfilewriter that should make it both faster, and not mess up %
style replacements.
Diffstat (limited to 'src/xmlfilewriter.cpp')
-rw-r--r-- | src/xmlfilewriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmlfilewriter.cpp b/src/xmlfilewriter.cpp index 19120a0..3c6fb41 100644 --- a/src/xmlfilewriter.cpp +++ b/src/xmlfilewriter.cpp | |||
@@ -23,6 +23,6 @@ XmlFileWriter::~XmlFileWriter() | |||
23 | 23 | ||
24 | void XmlFileWriter::writeString( const char *sString ) | 24 | void XmlFileWriter::writeString( const char *sString ) |
25 | { | 25 | { |
26 | fprintf( fh, sString ); | 26 | fputs( sString, fh ); |
27 | } | 27 | } |
28 | 28 | ||