User: hr Date: 06/06/19 18:45:08 Modified: /dba/connectivity/source/drivers/mozab/ MServices.cxx
Log: INTEGRATION: CWS warnings01 (1.4.30); FILE MERGED 2005/12/22 11:44:52 fs 1.4.30.4: #i57457# warning-free code 2005/11/21 10:07:52 fs 1.4.30.3: #i57457# warning-free code on unx* 2005/11/16 12:59:14 fs 1.4.30.2: #i57457# warning free code 2005/11/07 14:43:47 fs 1.4.30.1: #i57457# warning-free code File Changes: Directory: /dba/connectivity/source/drivers/mozab/ ================================================== File [changed]: MServices.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/mozab/MServices.cxx?r1=1.4&r2=1.5 Delta lines: +23 -23 --------------------- --- MServices.cxx 8 Sep 2005 06:20:38 -0000 1.4 +++ MServices.cxx 20 Jun 2006 01:45:06 -0000 1.5 @@ -85,7 +85,7 @@ Reference< ::com::sun::star::registry::XRegistryKey > xNewKey( xKey->createKey(aMainKeyName) ); OSL_ENSURE(xNewKey.is(), "MOZAB::component_writeInfo : could not create a registry key !"); - for (sal_uInt32 i=0; i<Services.getLength(); ++i) + for (sal_Int32 i=0; i<Services.getLength(); ++i) xNewKey->createKey(Services[i]); } @@ -132,7 +132,7 @@ extern "C" void SAL_CALL component_getImplementationEnvironment( const sal_Char **ppEnvTypeName, - uno_Environment **ppEnv + uno_Environment ** /*ppEnv*/ ) { *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME; @@ -140,7 +140,7 @@ //--------------------------------------------------------------------------------------- extern "C" sal_Bool SAL_CALL component_writeInfo( - void* pServiceManager, + void* /*pServiceManager*/, void* pRegistryKey ) { @@ -183,7 +183,7 @@ // get the symbol for the method creating the factory const ::rtl::OUString sFactoryCreationFunc = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("OMozillaBootstrap_CreateInstance")); // reinterpret_cast<OMozabConnection_CreateInstanceFunction> removed GNU C - OMozillaBootstrap_CreateInstanceFunction s_pCreationFunc = (OMozillaBootstrap_CreateInstanceFunction)(osl_getSymbol(s_hModule, sFactoryCreationFunc.pData)); + OMozillaBootstrap_CreateInstanceFunction s_pCreationFunc = (OMozillaBootstrap_CreateInstanceFunction)osl_getFunctionSymbol(s_hModule, sFactoryCreationFunc.pData); if (NULL == s_pCreationFunc) { // did not find the symbol @@ -200,7 +200,7 @@ extern "C" void* SAL_CALL component_getFactory( const sal_Char* pImplementationName, void* pServiceManager, - void* pRegistryKey) + void* /*pRegistryKey*/) { void* pRet = 0; if (pServiceManager) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
