dbertoni    00/07/25 07:52:14

  Modified:    c/src/XSLT Stylesheet.cpp Stylesheet.hpp
  Log:
  Removed obsolete data member.
  
  Revision  Changes    Path
  1.26      +0 -6      xml-xalan/c/src/XSLT/Stylesheet.cpp
  
  Index: Stylesheet.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/Stylesheet.cpp,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- Stylesheet.cpp    2000/07/21 19:52:56     1.25
  +++ Stylesheet.cpp    2000/07/25 14:52:12     1.26
  @@ -119,7 +119,6 @@
        PrefixResolver(),
        m_stylesheetRoot(root),
        m_baseIdent(baseIdentifier),
  -     m_key_tables(),
        m_keyDeclarations(),
        m_needToBuildKeysTable(false),
        m_imports(),
  @@ -174,11 +173,6 @@
        for_each(m_imports.begin(),
                         m_imports.end(),
                         DeleteFunctor<Stylesheet>());
  -
  -     // Clean up the key table vector
  -     for_each(m_key_tables.begin(),
  -                      m_key_tables.end(),
  -                      DeleteFunctor<KeyTable>());
   
        // Clean up the atribute sets vector
        for_each(m_attributeSets.begin(),
  
  
  
  1.18      +0 -5      xml-xalan/c/src/XSLT/Stylesheet.hpp
  
  Index: Stylesheet.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/Stylesheet.hpp,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- Stylesheet.hpp    2000/07/21 19:52:56     1.17
  +++ Stylesheet.hpp    2000/07/25 14:52:12     1.18
  @@ -1152,11 +1152,6 @@
        XPathVectorType                                         
m_whitespaceStrippingElements;
   
        /**
  -      * Table of tables of element keys. See KeyTable.
  -      */
  -     KeyTableVectorType                                      m_key_tables;
  -
  -     /**
         * Table of KeyDeclaration objects, which are set by the 
         * xsl:key element.
         */
  
  
  

Reply via email to