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/07/12 23:50:19 UTC

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

dbertoni    00/07/12 14:50:19

  Modified:    c/src/XSLT XSLTEngineImpl.cpp
  Log:
  Update for changes to XObject, XPath, XObjectFactory, and XPathFactory.
  
  Revision  Changes    Path
  1.48      +4 -4      xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp
  
  Index: XSLTEngineImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- XSLTEngineImpl.cpp	2000/07/06 20:19:25	1.47
  +++ XSLTEngineImpl.cpp	2000/07/12 21:50:18	1.48
  @@ -2437,8 +2437,8 @@
   			const XalanDOMString&	str,
   			XPathExecutionContext&	executionContext)
   {
  -	FactoryObjectAutoPointer<XPath>		theXPath(&m_xpathFactory,
  -												 m_xpathFactory.create());
  +	XPathGuard	theXPath(m_xpathFactory,
  +						 m_xpathFactory.create());
   
       m_xpathProcessor->initXPath(*theXPath.get(),
   								str,
  @@ -2460,8 +2460,8 @@
   			const PrefixResolver&	prefixResolver,
   			XPathExecutionContext&	executionContext)
   {
  -	FactoryObjectAutoPointer<XPath>		theXPath(&m_xpathFactory,
  -												 m_xpathFactory.create());
  +	XPathGuard	theXPath(m_xpathFactory,
  +						 m_xpathFactory.create());
   
       m_xpathProcessor->initXPath(*theXPath.get(),
   								str,