You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/12/10 22:47:44 UTC

cvs commit: xml-xalan/c/src/XMLSupport XMLParserLiaisonDefault.hpp

dbertoni    01/12/10 13:47:44

  Modified:    c/src/XMLSupport XMLParserLiaisonDefault.hpp
  Log:
  Fixed problem with get accessors.
  
  Revision  Changes    Path
  1.14      +2 -2      xml-xalan/c/src/XMLSupport/XMLParserLiaisonDefault.hpp
  
  Index: XMLParserLiaisonDefault.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/XMLParserLiaisonDefault.hpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- XMLParserLiaisonDefault.hpp	2001/11/07 04:07:20	1.13
  +++ XMLParserLiaisonDefault.hpp	2001/12/10 21:47:44	1.14
  @@ -143,13 +143,13 @@
   	getParserDescription() const;
   
   	virtual EntityResolver*
  -	getEntityResolver() { return m_entityResolver; }
  +	getEntityResolver() const { return m_entityResolver; }
   
   	virtual void
   	setEntityResolver(EntityResolver*	resolver) { m_entityResolver = resolver; }
   
   	virtual ErrorHandler*
  -	getErrorHandler() { return m_errorHandler; }
  +	getErrorHandler() { return m_errorHandler; } const
   
   	virtual void
   	setErrorHandler(ErrorHandler*	handler) { m_errorHandler = handler; }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org