diff options
-rw-r--r-- | cppuhelper/source/exc_thrower.cxx | 4 | ||||
-rw-r--r-- | tubes/qa/test_manager.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/expand/ucpexpand.cxx | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/cppuhelper/source/exc_thrower.cxx b/cppuhelper/source/exc_thrower.cxx index 26838d638c18..7d3e24b7344b 100644 --- a/cppuhelper/source/exc_thrower.cxx +++ b/cppuhelper/source/exc_thrower.cxx @@ -67,12 +67,12 @@ extern "C" { -static void SAL_CALL ExceptionThrower_acquire_release_nop( +void SAL_CALL ExceptionThrower_acquire_release_nop( SAL_UNUSED_PARAMETER uno_Interface * ) {} -static void SAL_CALL ExceptionThrower_dispatch( +void SAL_CALL ExceptionThrower_dispatch( uno_Interface * pUnoI, typelib_TypeDescription const * pMemberType, void * pReturn, void * pArgs [], uno_Any ** ppException ) { diff --git a/tubes/qa/test_manager.cxx b/tubes/qa/test_manager.cxx index 5abe193df198..a5c1397fe321 100644 --- a/tubes/qa/test_manager.cxx +++ b/tubes/qa/test_manager.cxx @@ -64,7 +64,7 @@ class TestCollaboration : public Collaboration virtual void StartCollaboration( TeleConference* ) {} }; -static gboolean timed_out( void * ) +gboolean timed_out( void * ) { CPPUNIT_ASSERT_MESSAGE( "Test took longer than ten seconds!", false); diff --git a/ucb/source/ucp/expand/ucpexpand.cxx b/ucb/source/ucp/expand/ucpexpand.cxx index 9fa5b4d9064b..49673d6c838d 100644 --- a/ucb/source/ucp/expand/ucpexpand.cxx +++ b/ucb/source/ucp/expand/ucpexpand.cxx @@ -115,7 +115,7 @@ void ExpandContentProviderImpl::disposing() } -static uno::Reference< uno::XInterface > SAL_CALL create( +uno::Reference< uno::XInterface > SAL_CALL create( uno::Reference< uno::XComponentContext > const & xComponentContext ) { return static_cast< ::cppu::OWeakObject * >( @@ -123,13 +123,13 @@ static uno::Reference< uno::XInterface > SAL_CALL create( } -static OUString SAL_CALL implName() +OUString SAL_CALL implName() { return OUString("com.sun.star.comp.ucb.ExpandContentProvider"); } -static uno::Sequence< OUString > SAL_CALL supportedServices() +uno::Sequence< OUString > SAL_CALL supportedServices() { OUString names [] = { OUString("com.sun.star.ucb.ExpandContentProvider"), |