summaryrefslogtreecommitdiff
path: root/remotebridges
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 12:17:10 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 12:17:10 +0000
commit72bfc0f50e3966a0a4c95ce17a23b976d610009a (patch)
treeffd457edd5767843d78557af8ef1ca71558ab5fd /remotebridges
parenta6e77bc602c1b60c83b6a98696466952d3af6256 (diff)
INTEGRATION: CWS warnings01 (1.5.8); FILE MERGED
2005/09/09 15:43:23 sb 1.5.8.1: #i53898# Made code warning-free.
Diffstat (limited to 'remotebridges')
-rw-r--r--remotebridges/source/dynamicloader/dynamicloader.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/remotebridges/source/dynamicloader/dynamicloader.cxx b/remotebridges/source/dynamicloader/dynamicloader.cxx
index dcd86b754b1a..96a0fc7c2a9c 100644
--- a/remotebridges/source/dynamicloader/dynamicloader.cxx
+++ b/remotebridges/source/dynamicloader/dynamicloader.cxx
@@ -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)) {