summaryrefslogtreecommitdiff
path: root/svx/source/unodraw/recoveryui.cxx
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/source/unodraw/recoveryui.cxx
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/source/unodraw/recoveryui.cxx')
-rw-r--r--svx/source/unodraw/recoveryui.cxx6
1 files changed, 3 insertions, 3 deletions
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 ) );