dbertoni 2003/10/10 09:47:16
Modified: c/src/xalanc/PlatformSupport AttributesImpl.cpp
Log:
Fixed bug in operator=(). Fixes Bugzilla 23721.
Revision Changes Path
1.3 +3 -3 xml-xalan/c/src/xalanc/PlatformSupport/AttributesImpl.cpp
Index: AttributesImpl.cpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/xalanc/PlatformSupport/AttributesImpl.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- AttributesImpl.cpp 19 Sep 2003 21:05:21 -0000 1.2
+++ AttributesImpl.cpp 10 Oct 2003 16:47:16 -0000 1.3
@@ -212,11 +212,11 @@
for(unsigned int i = 0; i < theLength; i++)
{
theTempList.addAttribute(
+ theRHS.getURI(i),
+ theRHS.getLocalName(i),
theRHS.getQName(i),
theRHS.getType(i),
- theRHS.getValue(i),
- theRHS.getURI(i),
- theRHS.getLocalName(i));
+ theRHS.getValue(i));
}
// Now that the temp list is built, swap everything. This is
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]