dbertoni    00/05/26 12:23:52

  Modified:    c/src/XSLT StylesheetExecutionContextDefault.cpp
  Log:
  Send errors, warnings, and message to the processor.
  
  Revision  Changes    Path
  1.14      +3 -3      
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.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- StylesheetExecutionContextDefault.cpp     2000/05/25 16:51:35     1.13
  +++ StylesheetExecutionContextDefault.cpp     2000/05/26 19:23:51     1.14
  @@ -1376,7 +1376,7 @@
                        const XalanNode*                sourceNode,
                        const XalanNode*                styleNode) const
   {
  -     m_xpathExecutionContextDefault.error(msg, sourceNode, styleNode);
  +     m_xsltProcessor.error(msg, sourceNode, styleNode);
   }
   
   
  @@ -1387,7 +1387,7 @@
                        const XalanNode*                sourceNode,
                        const XalanNode*                styleNode) const
   {
  -     m_xpathExecutionContextDefault.warn(msg, sourceNode, styleNode);
  +     m_xsltProcessor.warn(msg, sourceNode, styleNode);
   }
   
   
  @@ -1398,5 +1398,5 @@
                        const XalanNode*                sourceNode,
                        const XalanNode*                styleNode) const
   {
  -     m_xpathExecutionContextDefault.message(msg, sourceNode, styleNode);
  +     m_xsltProcessor.message(msg, sourceNode, styleNode);
   }
  
  
  

Reply via email to