dbertoni 00/04/25 15:35:43
Modified: c/src/PlatformSupport DOMStringHelper.hpp
Log:
Changed clear() function because of the way Xerces handles deleting data.
Revision Changes Path
1.15 +1 -1 xml-xalan/c/src/PlatformSupport/DOMStringHelper.hpp
Index: DOMStringHelper.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/DOMStringHelper.hpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- DOMStringHelper.hpp 2000/04/21 20:28:22 1.14
+++ DOMStringHelper.hpp 2000/04/25 22:35:43 1.15
@@ -1136,7 +1136,7 @@
{
if (length(theString) > 0)
{
- theString.deleteData(0, length(theString));
+ theString = DOMString();
}
}