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...@apache.org on 2001/01/24 17:10:53 UTC

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

dbertoni    01/01/24 08:10:53

  Modified:    c/src/XSLT StylesheetConstructionContextDefault.cpp
  Log:
  Set new XPath flag to indicate that they are embedded in a compiled stylesheet.
  
  Revision  Changes    Path
  1.13      +4 -0      xml-xalan/c/src/XSLT/StylesheetConstructionContextDefault.cpp
  
  Index: StylesheetConstructionContextDefault.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetConstructionContextDefault.cpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- StylesheetConstructionContextDefault.cpp	2000/11/30 20:34:10	1.12
  +++ StylesheetConstructionContextDefault.cpp	2001/01/24 16:10:51	1.13
  @@ -324,6 +324,8 @@
   									   resolver,
   									   m_xpathEnvSupport);
   
  +	xpath->setInStylesheet(true);
  +
   	return xpath;
   }
   
  @@ -354,6 +356,8 @@
   								str,
   								resolver,
   								m_xpathEnvSupport);
  +
  +	xpath->setInStylesheet(true);
   
   	return xpath;
   }