dbertoni    00/08/07 09:08:24

  Modified:    c/src/DOMSupport NSInfo.hpp
  Log:
  Fixed problem with wrong == operators being called.
  
  Revision  Changes    Path
  1.4       +3 -3      xml-xalan/c/src/DOMSupport/NSInfo.hpp
  
  Index: NSInfo.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/DOMSupport/NSInfo.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NSInfo.hpp        2000/04/11 14:30:44     1.3
  +++ NSInfo.hpp        2000/08/07 16:08:23     1.4
  @@ -141,9 +141,9 @@
        operator==(const NSInfo&        theRHS) const
        {
                return equals(m_namespace, theRHS.m_namespace) &&
  -                        equals(m_hasXMLNSAttrs, theRHS.m_hasXMLNSAttrs) &&
  -                        equals(m_hasProcessedNS, theRHS.m_hasProcessedNS) &&
  -                        equals(m_ancestorHasXMLNSAttrs, 
theRHS.m_ancestorHasXMLNSAttrs);
  +                        m_hasXMLNSAttrs == theRHS.m_hasXMLNSAttrs &&
  +                        m_hasProcessedNS == theRHS.m_hasProcessedNS &&
  +                        m_ancestorHasXMLNSAttrs == 
theRHS.m_ancestorHasXMLNSAttrs;
        }
   
        XalanDOMString  m_namespace;
  
  
  

Reply via email to