dbertoni 00/12/20 20:46:55
Modified: c/src/XSLT ElemValueOf.cpp
Log:
Used string reference instead of value.
Revision Changes Path
1.16 +2 -2 xml-xalan/c/src/XSLT/ElemValueOf.cpp
Index: ElemValueOf.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemValueOf.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ElemValueOf.cpp 2000/11/21 21:10:00 1.15
+++ ElemValueOf.cpp 2000/12/21 04:46:54 1.16
@@ -241,12 +241,12 @@
void
-ElemValueOf:: fireSelectionEvent(
+ElemValueOf::fireSelectionEvent(
StylesheetExecutionContext&
executionContext,
XalanNode*
sourceNode,
const XalanDOMString& theValue) const
{
- const XObjectPtr
value(executionContext.getXObjectFactory().createString(theValue));
+ const XObjectPtr
value(executionContext.getXObjectFactory().createStringReference(theValue));
fireSelectionEvent(executionContext, sourceNode, value);
}