summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorWastack <btomi96@gmail.com>2016-03-11 00:43:10 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-11 08:54:33 +0000
commit7a0b8decb7d81fefced39ee04368dd0112e8ac28 (patch)
tree6ee2eb9a840abf90c1150e473db6d99d75d18c04 /svx
parentb91fb8465cdaaff077b9f5c2a73cfc873350126f (diff)
tdf#97966: Remove 'static' keywords
Change-Id: Id70f9e55fb4ad7d3a501399b055208ea10369c82 Reviewed-on: https://gerrit.libreoffice.org/23131 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/form/fmPropBrw.cxx2
-rw-r--r--svx/source/unodraw/recoveryui.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/form/fmPropBrw.cxx b/svx/source/form/fmPropBrw.cxx
index aff1df1df3bf..af7487d966da 100644
--- a/svx/source/form/fmPropBrw.cxx
+++ b/svx/source/form/fmPropBrw.cxx
@@ -491,7 +491,7 @@ IMPL_LINK_NOARG_TYPED( FmPropBrw, OnAsyncGetFocus, void*, void )
namespace
{
- static bool lcl_shouldEnableHelpSection( const Reference< XComponentContext >& _rxContext )
+ bool lcl_shouldEnableHelpSection( const Reference< XComponentContext >& _rxContext )
{
::utl::OConfigurationTreeRoot aConfiguration(
::utl::OConfigurationTreeRoot::createWithComponentContext(
diff --git a/svx/source/unodraw/recoveryui.cxx b/svx/source/unodraw/recoveryui.cxx
index 7f436f9fd2df..ef3701b67b38 100644
--- a/svx/source/unodraw/recoveryui.cxx
+++ b/svx/source/unodraw/recoveryui.cxx
@@ -176,7 +176,7 @@ css::uno::Any SAL_CALL RecoveryUI::dispatchWithReturnValue(const css::util::URL&
}
-static OUString GetCrashConfigDir()
+OUString GetCrashConfigDir()
{
#if defined(_WIN32)
@@ -202,14 +202,14 @@ static OUString GetCrashConfigDir()
#endif
-static OUString GetUnsentURL()
+OUString GetUnsentURL()
{
OUString aURL = GetCrashConfigDir() + "/" LCKFILE;
return aURL;
}
-static bool delete_pending_crash()
+bool delete_pending_crash()
{
OUString aUnsentURL = GetUnsentURL();
return ( FileBase::E_None == File::remove( aUnsentURL ) );