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/05/26 21:23:53 UTC

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

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);
   }