[Libreoffice-commits] core.git: cppuhelper/source tubes/qa ucb/source

Wastack btomi96 at gmail.com
Fri Mar 11 08:38:34 UTC 2016


 cppuhelper/source/exc_thrower.cxx   |    4 ++--
 tubes/qa/test_manager.cxx           |    2 +-
 ucb/source/ucp/expand/ucpexpand.cxx |    6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 83452dd0836fe0da96095a322231d837fc31934b
Author: Wastack <btomi96 at gmail.com>
Date:   Fri Mar 11 00:54:07 2016 +0100

    tdf#97966 redundant static keywords removed 6
    
    Change-Id: Iaf034f3b2282a973f6503edea41cb3184543fb11
    Reviewed-on: https://gerrit.libreoffice.org/23133
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/cppuhelper/source/exc_thrower.cxx b/cppuhelper/source/exc_thrower.cxx
index 26838d6..7d3e24b 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 5abe193..a5c1397 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 9fa5b4d..49673d6 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"),


More information about the Libreoffice-commits mailing list