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...@locus.apache.org on 2000/02/17 17:06:15 UTC

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

dbertoni    00/02/17 08:06:15

  Modified:    c/src/XSLT XSLTProcessorEnvSupportDefault.cpp
                        XSLTProcessorEnvSupportDefault.hpp
  Log:
  Fixed bug with multiple copies of the context node list.
  
  Revision  Changes    Path
  1.3       +1 -1      xml-xalan/c/src/XSLT/XSLTProcessorEnvSupportDefault.cpp
  
  Index: XSLTProcessorEnvSupportDefault.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTProcessorEnvSupportDefault.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XSLTProcessorEnvSupportDefault.cpp	2000/01/26 14:27:00	1.2
  +++ XSLTProcessorEnvSupportDefault.cpp	2000/02/17 16:06:14	1.3
  @@ -170,7 +170,7 @@
   XSLTProcessorEnvSupportDefault::problem(
   			eSource					/* where */,
   			eClassification			classification,
  -			const PrefixResolver&	/* resolver */,
  +			const PrefixResolver*	/* resolver */,
   			const DOM_Node&			/* sourceNode */,
   			const DOMString&		msg,
   			int						lineNo,
  
  
  
  1.3       +1 -1      xml-xalan/c/src/XSLT/XSLTProcessorEnvSupportDefault.hpp
  
  Index: XSLTProcessorEnvSupportDefault.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTProcessorEnvSupportDefault.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XSLTProcessorEnvSupportDefault.hpp	2000/01/26 14:27:00	1.2
  +++ XSLTProcessorEnvSupportDefault.hpp	2000/02/17 16:06:14	1.3
  @@ -120,7 +120,7 @@
   	problem(
   			eSource					where,
   			eClassification			classification,
  -			const PrefixResolver&	resolver,
  +			const PrefixResolver*	resolver,
   			const DOM_Node&			sourceNode,
   			const DOMString&		msg,
   			int						lineNo,