dbertoni    00/08/11 08:17:23

  Modified:    c/src/XSLT StylesheetExecutionContextDefault.cpp
                        StylesheetExecutionContextDefault.hpp
                        XSLTEngineImpl.cpp
  Log:
  Fixed bug with temporary passed as context node list.
  
  Revision  Changes    Path
  1.27      +1 -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.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- StylesheetExecutionContextDefault.cpp     2000/08/10 18:43:11     1.26
  +++ StylesheetExecutionContextDefault.cpp     2000/08/11 15:17:22     1.27
  @@ -122,7 +122,7 @@
                        XPathSupport&                   theXPathSupport,
                        XObjectFactory&                 theXObjectFactory,
                        XalanNode*                              theCurrentNode,
  -                     const NodeRefListBase&  theContextNodeList,
  +                     const NodeRefListBase*  theContextNodeList,
                        const PrefixResolver*   thePrefixResolver) :
        StylesheetExecutionContext(),
        m_xpathExecutionContextDefault(theXPathEnvSupport,
  
  
  
  1.25      +1 -1      
xml-xalan/c/src/XSLT/StylesheetExecutionContextDefault.hpp
  
  Index: StylesheetExecutionContextDefault.hpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/c/src/XSLT/StylesheetExecutionContextDefault.hpp,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- StylesheetExecutionContextDefault.hpp     2000/08/10 18:43:11     1.24
  +++ StylesheetExecutionContextDefault.hpp     2000/08/11 15:17:22     1.25
  @@ -103,7 +103,7 @@
                        XPathSupport&                   theXPathSupport,
                        XObjectFactory&                 theXObjectFactory,
                        XalanNode*                              theCurrentNode 
= 0,
  -                     const NodeRefListBase&  theContextNodeList = 
NodeRefList(),
  +                     const NodeRefListBase*  theContextNodeList = 0,
                        const PrefixResolver*   thePrefixResolver = 0);
   
        virtual
  
  
  
  1.56      +1 -1      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.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- XSLTEngineImpl.cpp        2000/08/10 18:43:12     1.55
  +++ XSLTEngineImpl.cpp        2000/08/11 15:17:22     1.56
  @@ -764,7 +764,7 @@
                                                                                
                                        m_xpathSupport,
                                                                                
                                        m_xobjectFactory,
                                                                                
                                        &fragBase,
  -                                                                             
                                        NodeRefList(),
  +                                                                             
                                        0,
                                                                                
                                        &theProxy);
   
                const XObjectGuard              xobj(
  
  
  

Reply via email to