INTEGRATION: CWS warnings01 (1.5.60); FILE MERGED

2005/09/22 15:40:16 sb 1.5.60.2: RESYNC: (1.5-1.6); FILE MERGED
2005/09/07 11:05:31 sb 1.5.60.1: #i53898# Made code warning-free.
This commit is contained in:
Jens-Heiner Rechtien 2006-06-19 09:35:18 +00:00
parent 47ad962b84
commit 4024d807f8

View file

@ -4,9 +4,9 @@
*
* $RCSfile: stdidlclass.cxx,v $
*
* $Revision: 1.6 $
* $Revision: 1.7 $
*
* last change: $Author: rt $ $Date: 2005-09-08 09:29:27 $
* last change: $Author: hr $ $Date: 2006-06-19 10:35:18 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -84,7 +84,7 @@ public:
// XIdlClass
virtual Sequence< Reference< XIdlClass > > SAL_CALL getClasses( ) throw(RuntimeException)
{ return Sequence < Reference < XIdlClass > > (); }
virtual Reference< XIdlClass > SAL_CALL getClass( const ::rtl::OUString& aName ) throw(RuntimeException)
virtual Reference< XIdlClass > SAL_CALL getClass( const ::rtl::OUString& ) throw(RuntimeException)
{ return Reference < XIdlClass > (); }
virtual sal_Bool SAL_CALL equals( const Reference< XIdlClass >& Type ) throw(RuntimeException)
{ return getName() == Type->getName(); }
@ -102,17 +102,17 @@ public:
virtual Reference< XIdlClass > SAL_CALL getComponentType( ) throw(RuntimeException)
{ return Reference < XIdlClass > (); }
virtual Reference< XIdlField > SAL_CALL getField( const ::rtl::OUString& aName ) throw(RuntimeException)
virtual Reference< XIdlField > SAL_CALL getField( const ::rtl::OUString& ) throw(RuntimeException)
{ return Reference < XIdlField > (); }
virtual Sequence< Reference< XIdlField > > SAL_CALL getFields( ) throw(RuntimeException)
{ return Sequence< Reference < XIdlField > > (); }
virtual Reference< XIdlMethod > SAL_CALL getMethod( const ::rtl::OUString& aName ) throw(RuntimeException)
virtual Reference< XIdlMethod > SAL_CALL getMethod( const ::rtl::OUString& ) throw(RuntimeException)
{ return Reference < XIdlMethod > (); }
virtual Sequence< Reference< XIdlMethod > > SAL_CALL getMethods( ) throw(RuntimeException)
{ return Sequence < Reference < XIdlMethod > > (); }
virtual Reference< XIdlArray > SAL_CALL getArray( ) throw(RuntimeException)
{ return Reference < XIdlArray > (); }
virtual void SAL_CALL createObject( Any& obj ) throw(RuntimeException) {}
virtual void SAL_CALL createObject( Any& ) throw(RuntimeException) {}
private:
OUString m_sImplementationName;