You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ar...@locus.apache.org on 2000/08/14 20:56:14 UTC

cvs commit: xml-xerces/c/src/sax2 DefaultHandler.hpp

aruna1      00/08/14 11:56:14

  Modified:    c/src/sax2 DefaultHandler.hpp
  Log:
  Virtual parameter inconsistency fixed
  
  Revision  Changes    Path
  1.3       +5 -2      xml-xerces/c/src/sax2/DefaultHandler.hpp
  
  Index: DefaultHandler.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/sax2/DefaultHandler.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DefaultHandler.hpp	2000/08/07 18:21:27	1.2
  +++ DefaultHandler.hpp	2000/08/14 18:56:14	1.3
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: DefaultHandler.hpp,v $
  + * Revision 1.3  2000/08/14 18:56:14  aruna1
  + * Virtual parameter inconsistency fixed
  + *
    * Revision 1.2  2000/08/07 18:21:27  jpolast
    * change SAX_EXPORT module to SAX2_EXPORT
    *
  @@ -268,7 +271,7 @@
           const   XMLCh* const    uri,
           const   XMLCh* const    localname,
           const   XMLCh* const    qname
  -        ,       Attributes&		attrs
  +        , const Attributes&	attrs
       );
   
     /**
  @@ -567,7 +570,7 @@
   DefaultHandler::startElement(  const     XMLCh* const  uri
   								, const   XMLCh* const  localname
   								, const   XMLCh* const  qname
  -								,       Attributes&		attrs
  +								, const   Attributes&		attrs
   )
   {
   }