diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-10-20 11:04:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-20 12:59:23 +0100 |
commit | 27f963e4296a0327a92718afb133cd9e32563d32 (patch) | |
tree | 59e7e1e0232b59e348b8e782b2d08ec32bccca11 /avmedia | |
parent | f2bf12c7d70920c6d02881da36617b07d2a17441 (diff) |
WaE, unused parameters
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/gstreamer/gstuno.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/avmedia/source/gstreamer/gstuno.cxx b/avmedia/source/gstreamer/gstuno.cxx index c1d610bdbf01..1a0fcc52240a 100644 --- a/avmedia/source/gstreamer/gstuno.cxx +++ b/avmedia/source/gstreamer/gstuno.cxx @@ -43,7 +43,7 @@ static uno::Reference< uno::XInterface > SAL_CALL create_MediaPlayer( const uno: // - component_getImplementationEnvironment - // ------------------------------------------ -extern "C" void SAL_CALL component_getImplementationEnvironment( const sal_Char ** ppEnvTypeName, uno_Environment ** ppEnv ) +extern "C" void SAL_CALL component_getImplementationEnvironment( const sal_Char ** ppEnvTypeName, uno_Environment ** /*ppEnv*/ ) { *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME; } @@ -52,7 +52,7 @@ extern "C" void SAL_CALL component_getImplementationEnvironment( const sal_Char // - component_writeInfo - // ----------------------- -extern "C" sal_Bool SAL_CALL component_writeInfo( void* pServiceManager, void* pRegistryKey ) +extern "C" sal_Bool SAL_CALL component_writeInfo( void* /*pServiceManager*/, void* pRegistryKey ) { sal_Bool bRet = sal_False; @@ -79,7 +79,7 @@ extern "C" sal_Bool SAL_CALL component_writeInfo( void* pServiceManager, void* p // - component_getFactory - // ------------------------ -extern "C" void* SAL_CALL component_getFactory( const sal_Char* pImplName, void* pServiceManager, void* pRegistryKey ) +extern "C" void* SAL_CALL component_getFactory( const sal_Char* pImplName, void* pServiceManager, void* /*pRegistryKey*/ ) { uno::Reference< lang::XSingleServiceFactory > xFactory; void* pRet = 0; |