INTEGRATION: CWS warnings01 (1.5.8); FILE MERGED

2005/09/09 15:43:23 sb 1.5.8.1: #i53898# Made code warning-free.
This commit is contained in:
Jens-Heiner Rechtien 2006-06-19 12:17:10 +00:00
parent a6e77bc602
commit 72bfc0f50e

View file

@ -345,10 +345,10 @@ namespace dynamic_loader {
return bSuccess;
}
Reference<XInterface> SAL_CALL DynamicLoader::activate(const OUString & rImplName,
const OUString & loaderUrl,
Reference<XInterface> SAL_CALL DynamicLoader::activate(const OUString &,
const OUString &,
const OUString & locationUrl,
const Reference<XRegistryKey> & xKey)
const Reference<XRegistryKey> &)
throw(CannotActivateFactoryException, RuntimeException)
{
OSL_TRACE("DynamicLoader::activate");
@ -377,11 +377,11 @@ namespace dynamic_loader {
extern "C" {
void SAL_CALL component_getImplementationEnvironment(const sal_Char ** ppEnvTypeName, uno_Environment ** ppEnv) {
void SAL_CALL component_getImplementationEnvironment(const sal_Char ** ppEnvTypeName, uno_Environment **) {
*ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
}
sal_Bool SAL_CALL component_writeInfo(XMultiServiceFactory * pServiceManager, XRegistryKey * pRegistryKey) {
sal_Bool SAL_CALL component_writeInfo(XMultiServiceFactory *, XRegistryKey * pRegistryKey) {
sal_Bool bRes = sal_False;
if (pRegistryKey) {
@ -409,7 +409,7 @@ extern "C" {
return bRes;
}
void * SAL_CALL component_getFactory(const sal_Char * pImplName, XMultiServiceFactory * pServiceManager, XRegistryKey * pRegistryKey) {
void * SAL_CALL component_getFactory(const sal_Char * pImplName, XMultiServiceFactory * pServiceManager, XRegistryKey *) {
void * pRet = 0;
if (pServiceManager && OUString::createFromAscii(pImplName).equals(::dynamic_loader::DynamicLoader::implname)) {