diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-12-17 11:41:09 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-17 11:41:09 +0000 |
commit | 3b81384380e1e0ae8d79682c78394fead29ea25a (patch) | |
tree | 96b5af228d9efb170a4b22a1307f63ad84826fa8 /fpicker/source/unx/kde_unx | |
parent | b260d92434213b5d63afea9789e9bfe24b4fb84e (diff) |
WaE: unused parameters
Diffstat (limited to 'fpicker/source/unx/kde_unx')
-rw-r--r-- | fpicker/source/unx/kde_unx/UnxFPentry.cxx | 6 | ||||
-rw-r--r-- | fpicker/source/unx/kde_unx/UnxNotifyThread.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fpicker/source/unx/kde_unx/UnxFPentry.cxx b/fpicker/source/unx/kde_unx/UnxFPentry.cxx index c577440cde0b..98c94d600937 100644 --- a/fpicker/source/unx/kde_unx/UnxFPentry.cxx +++ b/fpicker/source/unx/kde_unx/UnxFPentry.cxx @@ -64,7 +64,7 @@ extern "C" // component_getImplementationEnvironment ////////////////////////////////////////////////////////////////////////// -void SAL_CALL component_getImplementationEnvironment( const sal_Char ** ppEnvTypeName, uno_Environment ** ppEnv ) +void SAL_CALL component_getImplementationEnvironment( const sal_Char ** ppEnvTypeName, uno_Environment ** /*ppEnv*/ ) { *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME; } @@ -73,7 +73,7 @@ void SAL_CALL component_getImplementationEnvironment( const sal_Char ** ppEnvTyp // ////////////////////////////////////////////////////////////////////////// -sal_Bool SAL_CALL component_writeInfo( void* pServiceManager, void* pRegistryKey ) +sal_Bool SAL_CALL component_writeInfo( void* /*pServiceManager*/, void* pRegistryKey ) { sal_Bool bRetVal = sal_True; @@ -98,7 +98,7 @@ sal_Bool SAL_CALL component_writeInfo( void* pServiceManager, void* pRegistryKey // ////////////////////////////////////////////////////////////////////////// -void* SAL_CALL component_getFactory( const sal_Char* pImplName, uno_Interface* pSrvManager, uno_Interface* pRegistryKey ) +void* SAL_CALL component_getFactory( const sal_Char* pImplName, uno_Interface* pSrvManager, uno_Interface* /*pRegistryKey*/ ) { void* pRet = 0; diff --git a/fpicker/source/unx/kde_unx/UnxNotifyThread.cxx b/fpicker/source/unx/kde_unx/UnxNotifyThread.cxx index 657029025089..a97fdfc24fae 100644 --- a/fpicker/source/unx/kde_unx/UnxNotifyThread.cxx +++ b/fpicker/source/unx/kde_unx/UnxNotifyThread.cxx @@ -52,7 +52,7 @@ void SAL_CALL UnxFilePickerNotifyThread::addFilePickerListener( const uno::Refer m_xListener = xListener; } -void SAL_CALL UnxFilePickerNotifyThread::removeFilePickerListener( const uno::Reference< ui::dialogs::XFilePickerListener >& xListener ) +void SAL_CALL UnxFilePickerNotifyThread::removeFilePickerListener( const uno::Reference< ui::dialogs::XFilePickerListener >& /*xListener*/ ) throw( uno::RuntimeException ) { ::osl::MutexGuard aGuard( m_aMutex ); |