You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by dl...@locus.apache.org on 2000/06/02 18:00:52 UTC

cvs commit: xml-xalan/c/samples/ExternalFunction ExternalFunction.cpp

dleslie     00/06/02 09:00:51

  Modified:    c/samples/ExternalFunction ExternalFunction.cpp
  Log:
  Removed processor.setFormatter -- no longer in XSLTEngineImpl.
  Adjusted to updated XSLTEngineImpl process method.
  
  Revision  Changes    Path
  1.3       +1 -4      xml-xalan/c/samples/ExternalFunction/ExternalFunction.cpp
  
  Index: ExternalFunction.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/samples/ExternalFunction/ExternalFunction.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ExternalFunction.cpp	2000/05/05 19:20:09	1.2
  +++ ExternalFunction.cpp	2000/06/02 16:00:50	1.3
  @@ -274,9 +274,6 @@
   			// Connect the processor to the support object...
   			theXSLTProcessorEnvSupport.setProcessor(&theProcessor);
   
  -			// Use the parser liaison as the formatter...
  -			theProcessor.setFormatter(&theParserLiaison);
  -
   			// Create a stylesheet construction context, and a stylesheet
   			// execution context...
   			StylesheetConstructionContextDefault	theConstructionContext(
  @@ -342,7 +339,7 @@
   
   			theProcessor.process(
   						theInputSource,
  -						&theStylesheetSource,
  +						theStylesheetSource,
   						theResultTarget,
   						theConstructionContext,
   						theExecutionContext);