From: Yurii R. <yr...@us...> - 2003-01-28 05:04:12
|
Update of /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/src In directory sc8-pr-cvs1:/tmp/cvs-serv22080/src Modified Files: sxmlstream.cxx Log Message: small bugfixes Index: sxmlstream.cxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/src/sxmlstream.cxx,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- sxmlstream.cxx 28 Jan 2003 04:16:25 -0000 1.4 +++ sxmlstream.cxx 28 Jan 2003 05:04:08 -0000 1.5 @@ -107,7 +107,7 @@ if (SXml_has_property(e)) { os << "(" << e.data << " \"" << - SXml_get_property(e) << "\") "; + SXml_get_property(e) << "\")"; } else { os << "(" << e.data << " )"; @@ -136,7 +136,7 @@ while (!s.queueIsEmpty()) { e = s.pop(); - os << SXml_TextOutput(os,e); + SXml_TextOutput(os,e); } return os; }; |