You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by jd...@locus.apache.org on 2000/03/07 19:07:35 UTC

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

jdonohue    00/03/07 10:07:35

  Modified:    c/src/XSLT StylesheetHandler.cpp
  Log:
  Delay initializatoin of m_includeBase
  
  Revision  Changes    Path
  1.10      +2 -1      xml-xalan/c/src/XSLT/StylesheetHandler.cpp
  
  Index: StylesheetHandler.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetHandler.cpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- StylesheetHandler.cpp	2000/03/07 16:21:00	1.9
  +++ StylesheetHandler.cpp	2000/03/07 18:07:34	1.10
  @@ -118,7 +118,7 @@
   	m_processor(processor),
   	m_stylesheet(stylesheetTree),
   	m_constructionContext(constructionContext),
  -	m_includeBase(m_stylesheet.getBaseIdentifier()),
  +	m_includeBase(),
   	m_pTemplate(0),
   	m_pLastPopped(0),
   	m_inTemplate(false),
  @@ -131,6 +131,7 @@
   	m_pLXSLTExtensionNSH(0),
   	m_elemStack()
   {
  +	m_includeBase = m_stylesheet.getBaseIdentifier();
   }