From 62d1632498d92b6e73b952c9d379edebe3052341 Mon Sep 17 00:00:00 2001 From: Wastack Date: Thu, 31 Mar 2016 08:38:10 +0200 Subject: tdf#97966 Drop 'static' keywords Including no keywords from extern "C" blocks Change-Id: I18ddafbf3d41f6779fb43e36ba1f1c48b37757a0 Reviewed-on: https://gerrit.libreoffice.org/23671 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- cppu/source/uno/lbenv.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cppu/source') diff --git a/cppu/source/uno/lbenv.cxx b/cppu/source/uno/lbenv.cxx index 2281bc143862..9f8948db2764 100644 --- a/cppu/source/uno/lbenv.cxx +++ b/cppu/source/uno/lbenv.cxx @@ -634,7 +634,7 @@ uno_DefaultEnvironment::~uno_DefaultEnvironment() } -static void writeLine( +void writeLine( void * stream, const sal_Char * pLine, const sal_Char * pFilter ) { if (pFilter && *pFilter) @@ -678,7 +678,7 @@ static void writeLine( } -static void writeLine( +void writeLine( void * stream, const OUString & rLine, const sal_Char * pFilter ) { ::rtl::OString aLine( ::rtl::OUStringToOString( @@ -1022,7 +1022,7 @@ inline void EnvironmentsData::getRegisteredEnvironments( } } -static bool loadEnv(OUString const & cLibStem, +bool loadEnv(OUString const & cLibStem, uno_Environment * pEnv) { #ifdef DISABLE_DYNLOADING -- cgit