tng         2003/01/09 11:07:44

  Modified:    c/src/xercesc/dom/deprecated DOMParser.cpp DOMParser.hpp
  Log:
  [Bug 15802] Add "const" qualifier to getURIText.
  
  Revision  Changes    Path
  1.14      +2 -2      xml-xerces/c/src/xercesc/dom/deprecated/DOMParser.cpp
  
  Index: DOMParser.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/deprecated/DOMParser.cpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- DOMParser.cpp     3 Jan 2003 20:17:50 -0000       1.13
  +++ DOMParser.cpp     9 Jan 2003 19:07:44 -0000       1.14
  @@ -263,7 +263,7 @@
       return fScanner->getRootGrammar();
   }
   
  -const XMLCh* DOMParser::getURIText(unsigned int uriId)
  +const XMLCh* DOMParser::getURIText(unsigned int uriId) const
   {
       return fScanner->getURIText(uriId);
   }
  
  
  
  1.16      +2 -2      xml-xerces/c/src/xercesc/dom/deprecated/DOMParser.hpp
  
  Index: DOMParser.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/deprecated/DOMParser.hpp,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- DOMParser.hpp     3 Jan 2003 20:17:50 -0000       1.15
  +++ DOMParser.hpp     9 Jan 2003 19:07:44 -0000       1.16
  @@ -446,7 +446,7 @@
         * @param uriId id of the string in the URI string pool.
         * @return URI string corresponding to the URI id.
         */
  -    const XMLCh* getURIText(unsigned int uriId);
  +    const XMLCh* getURIText(unsigned int uriId) const;
   
       /**
         * Returns the current src offset within the input source.
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to