summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWastack <btomi96@gmail.com>2016-03-11 00:54:07 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-11 08:38:11 +0000
commit83452dd0836fe0da96095a322231d837fc31934b (patch)
tree21a2777a29281d31742cdc1cbcb5f804312391e5
parent0fea7b00e26d9e5ee9ae995d484540adadf85fda (diff)
tdf#97966 redundant static keywords removed 6
Change-Id: Iaf034f3b2282a973f6503edea41cb3184543fb11 Reviewed-on: https://gerrit.libreoffice.org/23133 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r--cppuhelper/source/exc_thrower.cxx4
-rw-r--r--tubes/qa/test_manager.cxx2
-rw-r--r--ucb/source/ucp/expand/ucpexpand.cxx6
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"),