dbertoni    01/11/06 20:06:46

  Modified:    c/src/XalanSourceTree XalanSourceTreeParserLiaison.cpp
                        XalanSourceTreeParserLiaison.hpp
  Log:
  Fixed-up ErrorHandler and EntityResolver usage.
  
  Revision  Changes    Path
  1.22      +1 -9      
xml-xalan/c/src/XalanSourceTree/XalanSourceTreeParserLiaison.cpp
  
  Index: XalanSourceTreeParserLiaison.cpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/c/src/XalanSourceTree/XalanSourceTreeParserLiaison.cpp,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- XalanSourceTreeParserLiaison.cpp  2001/10/26 21:06:41     1.21
  +++ XalanSourceTreeParserLiaison.cpp  2001/11/07 04:06:46     1.22
  @@ -389,14 +389,6 @@
   
   
   ErrorHandler*
  -XalanSourceTreeParserLiaison::getErrorHandler()
  -{
  -     return m_xercesParserLiaison.getErrorHandler();
  -}
  -
  -
  -
  -const ErrorHandler*
   XalanSourceTreeParserLiaison::getErrorHandler() const
   {
        return m_xercesParserLiaison.getErrorHandler();
  @@ -445,7 +437,7 @@
   
   
   EntityResolver*
  -XalanSourceTreeParserLiaison::getEntityResolver()
  +XalanSourceTreeParserLiaison::getEntityResolver() const
   {
        return m_xercesParserLiaison.getEntityResolver();
   }
  
  
  
  1.13      +3 -13     
xml-xalan/c/src/XalanSourceTree/XalanSourceTreeParserLiaison.hpp
  
  Index: XalanSourceTreeParserLiaison.hpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/c/src/XalanSourceTree/XalanSourceTreeParserLiaison.hpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- XalanSourceTreeParserLiaison.hpp  2001/08/06 01:37:01     1.12
  +++ XalanSourceTreeParserLiaison.hpp  2001/11/07 04:06:46     1.13
  @@ -176,7 +176,7 @@
        getParserDescription() const;
   
        virtual EntityResolver*
  -     getEntityResolver();
  +     getEntityResolver() const;
   
        virtual void
        setEntityResolver(EntityResolver*       resolver);
  @@ -236,21 +236,11 @@
        setIncludeIgnorableWhitespace(bool      include);
   
        /**
  -       * This method returns the installed error handler. Suitable
  -       * for 'lvalue' usages.
  +       * This method returns the installed error handler.
          *
  -       * @return The pointer to the installed error handler object.
  +       * @return A pointer to the installed error handler object.
          */
        virtual ErrorHandler*
  -     getErrorHandler();
  -
  -     /**
  -       * This method returns the installed error handler. Suitable
  -       * for 'rvalue' usages.
  -       *
  -       * @return A const pointer to the installed error handler object.
  -       */
  -     virtual const ErrorHandler*
        getErrorHandler() const;
   
        /**
  
  
  

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

Reply via email to