diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:15:13 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:15:13 +0000 |
commit | 8f81417e2b7a3cbd658c69ae8c7f94fb5ed294cc (patch) | |
tree | a8cebefa2a2d7b808bd54ea7211207e066bad464 /eventattacher | |
parent | 824a4a476818a5bbfcc31d38c9da02895803c2e0 (diff) |
INTEGRATION: CWS warnings01 (1.5.4); FILE MERGED
2005/10/31 15:13:28 ab 1.5.4.2: #i53898# Fixed unused parameters for unxsols4(.pro)
2005/10/21 07:53:32 cd 1.5.4.1: #i53898# Fix warnings for gcc
Diffstat (limited to 'eventattacher')
-rw-r--r-- | eventattacher/source/eventattacher.cxx | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/eventattacher/source/eventattacher.cxx b/eventattacher/source/eventattacher.cxx index 45e5136615d8..8a7bcb38a470 100644 --- a/eventattacher/source/eventattacher.cxx +++ b/eventattacher/source/eventattacher.cxx @@ -4,9 +4,9 @@ * * $RCSfile: eventattacher.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-08 18:58:30 $ + * last change: $Author: hr $ $Date: 2006-06-20 00:15:13 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -161,8 +161,8 @@ Reference< XInterface > createAllListenerAdapter InvocationToAllListenerMapper::InvocationToAllListenerMapper ( const Reference< XIdlClass >& ListenerType, const Reference< XAllListener >& AllListener, const Any& Helper ) : m_xAllListener( AllListener ) - , m_Helper( Helper ) , m_xListenerType( ListenerType ) + , m_Helper( Helper ) { } @@ -175,7 +175,7 @@ Reference< XIntrospectionAccess > SAL_CALL InvocationToAllListenerMapper::getInt //************************************************************************* Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName, const Sequence< Any >& Params, - Sequence< sal_Int16 >& OutParamIndex, Sequence< Any >& OutParam) + Sequence< sal_Int16 >& , Sequence< Any >& ) throw( IllegalArgumentException, CannotConvertException, InvocationTargetException, RuntimeException ) { @@ -225,14 +225,14 @@ Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName, } //************************************************************************* -void SAL_CALL InvocationToAllListenerMapper::setValue(const OUString& PropertyName, const Any& Value) +void SAL_CALL InvocationToAllListenerMapper::setValue(const OUString& , const Any& ) throw( UnknownPropertyException, CannotConvertException, InvocationTargetException, RuntimeException ) { } //************************************************************************* -Any SAL_CALL InvocationToAllListenerMapper::getValue(const OUString& PropertyName) +Any SAL_CALL InvocationToAllListenerMapper::getValue(const OUString& ) throw( UnknownPropertyException, RuntimeException ) { return Any(); @@ -554,6 +554,7 @@ void FilterAllListenerImpl::convertToEventReturn( Any & rRet, const Type & rRetT case TypeClass_LONG: rRet <<= sal_Int32( 0 ); break; case TypeClass_UNSIGNED_SHORT: rRet <<= sal_uInt16( 0 ); break; case TypeClass_UNSIGNED_LONG: rRet <<= sal_uInt32( 0 ); break; + default: break; } } @@ -600,7 +601,7 @@ Any SAL_CALL FilterAllListenerImpl::approveFiring( const AllEventObject& Event ) } //************************************************************************* -void FilterAllListenerImpl::disposing(const EventObject& Source) +void FilterAllListenerImpl::disposing(const EventObject& ) throw( RuntimeException ) { // TODO: ??? @@ -882,13 +883,13 @@ extern "C" { //================================================================================================== void SAL_CALL component_getImplementationEnvironment( - const sal_Char ** ppEnvTypeName, uno_Environment ** ppEnv ) + const sal_Char ** ppEnvTypeName, uno_Environment ** ) { *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME; } //================================================================================================== sal_Bool SAL_CALL component_writeInfo( - void * pServiceManager, void * pRegistryKey ) + void * , void * pRegistryKey ) { if (pRegistryKey) { @@ -916,7 +917,7 @@ sal_Bool SAL_CALL component_writeInfo( } //================================================================================================== void * SAL_CALL component_getFactory( - const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ) + const sal_Char * pImplName, void * pServiceManager, void * ) { void * pRet = 0; |