diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 05:11:07 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 05:11:07 +0000 |
commit | 7329858b2ca3c724ac024f5c115bababb3127fff (patch) | |
tree | 34e0ab23161221863d12da495433e07c08cea88d /package | |
parent | 3e7f9c8ebd80bdbdfbdbf822f39bb60f444a971d (diff) |
INTEGRATION: CWS warnings01 (1.5.4); FILE MERGED
2005/11/01 17:10:18 cd 1.5.4.1: #i53898# Warning free code for sun sparc compiler
Diffstat (limited to 'package')
-rw-r--r-- | package/source/manifest/UnoRegister.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/source/manifest/UnoRegister.cxx b/package/source/manifest/UnoRegister.cxx index 6f10a0b3c249..1c100fe35357 100644 --- a/package/source/manifest/UnoRegister.cxx +++ b/package/source/manifest/UnoRegister.cxx @@ -4,9 +4,9 @@ * * $RCSfile: UnoRegister.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-08 16:05:08 $ + * last change: $Author: hr $ $Date: 2006-06-20 06:11:07 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -102,7 +102,7 @@ static sal_Bool writeInfo( void * pRegistryKey, // C functions to implement this as a component extern "C" void SAL_CALL component_getImplementationEnvironment( - const sal_Char ** ppEnvTypeName, uno_Environment ** ppEnv ) + const sal_Char ** ppEnvTypeName, uno_Environment ** /*ppEnv*/ ) { *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME; } @@ -113,7 +113,7 @@ extern "C" void SAL_CALL component_getImplementationEnvironment( * @param pServiceManager generic uno interface providing a service manager * @param pRegistryKey generic uno interface providing registry key to write */ -extern "C" sal_Bool SAL_CALL component_writeInfo( void* pServiceManager, void* pRegistryKey ) +extern "C" sal_Bool SAL_CALL component_writeInfo( void* /*pServiceManager*/, void* pRegistryKey ) { return pRegistryKey && writeInfo (pRegistryKey, @@ -141,7 +141,7 @@ extern "C" sal_Bool SAL_CALL component_writeInfo( void* pServiceManager, void* p * @return a component factory (generic uno interface) */ extern "C" void * SAL_CALL component_getFactory( - const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ) + const sal_Char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ ) { void * pRet = 0; Reference< XMultiServiceFactory > xSMgr( |