You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/01/26 22:17:14 UTC

cvs commit: xml-xalan/c/src/XSLT ElemCopy.cpp

dbertoni    01/01/26 13:17:14

  Modified:    c/src/XSLT ElemCopy.cpp
  Log:
  Removed obsolete argument in call.
  
  Revision  Changes    Path
  1.8       +10 -11    xml-xalan/c/src/XSLT/ElemCopy.cpp
  
  Index: ElemCopy.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemCopy.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ElemCopy.cpp	2000/11/02 01:46:21	1.7
  +++ ElemCopy.cpp	2001/01/26 21:17:14	1.8
  @@ -116,7 +116,7 @@
   	if(XalanNode::DOCUMENT_NODE != nodeType)
   	{
   		executionContext.cloneToResultTree(
  -			*sourceNode, 
  +			*sourceNode,
   			false,
   			false,
   			false);
  @@ -126,28 +126,27 @@
   			assert(sourceNode != 0);
   
   			ElemUse::execute(
  -				executionContext, 
  -				sourceTree, 
  -				sourceNode, 
  +				executionContext,
  +				sourceTree,
  +				sourceNode,
   				mode);
   
  -			executionContext.copyNamespaceAttributes(*sourceNode, 
  -													 false);
  +			executionContext.copyNamespaceAttributes(*sourceNode);
   
  -			executeChildren(executionContext, 
  -				sourceTree, 
  -				sourceNode, 
  +			executeChildren(executionContext,
  +				sourceTree,
  +				sourceNode,
   				mode);
   
   			const XalanDOMString&	s = sourceNode->getNodeName();
   
  -			executionContext.endElement(toCharArray(s)); 
  +			executionContext.endElement(toCharArray(s));
   		}
   		else
   		{
   			if(0 != executionContext.getTraceListeners())
   			{
  -				executionContext.fireTraceEvent(TracerEvent(executionContext, 
  +				executionContext.fireTraceEvent(TracerEvent(executionContext,
   					sourceTree,
   					sourceNode,
   					mode,