dbertoni    2003/01/22 16:41:35

  Modified:    c/src/XSLT StylesheetExecutionContextDefault.cpp
  Log:
  Call XPathEnvSupport::extFunction() directly.
  
  Revision  Changes    Path
  1.109     +4 -1      
xml-xalan/c/src/XSLT/StylesheetExecutionContextDefault.cpp
  
  Index: StylesheetExecutionContextDefault.cpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/c/src/XSLT/StylesheetExecutionContextDefault.cpp,v
  retrieving revision 1.108
  retrieving revision 1.109
  diff -u -r1.108 -r1.109
  --- StylesheetExecutionContextDefault.cpp     8 Jan 2003 04:48:37 -0000       
1.108
  +++ StylesheetExecutionContextDefault.cpp     23 Jan 2003 00:41:35 -0000      
1.109
  @@ -82,6 +82,7 @@
   #include <XPath/ResultTreeFragBase.hpp>
   #include <XPath/XObjectFactory.hpp>
   #include <XPath/XPath.hpp>
  +#include <XPath/XPathEnvSupport.hpp>
   #include <XPath/XPathExecutionContext.hpp>
   #include <XPath/XObject.hpp>
   
  @@ -1821,7 +1822,9 @@
                        const XObjectArgVectorType&             argVec,
                        const LocatorType*                              locator)
   {
  -     return m_xpathExecutionContextDefault.extFunction(theNamespace, 
functionName, context, argVec, locator);
  +     assert(m_xpathExecutionContextDefault.getXPathEnvSupport() != 0);
  +
  +     return 
m_xpathExecutionContextDefault.getXPathEnvSupport()->extFunction(*this, 
theNamespace, functionName, context, argVec, locator);
   }
   
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to