summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorWastack <btomi96@gmail.com>2016-03-31 08:40:23 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-01 06:44:34 +0000
commit9e596250a6e968c5d1e2fb0de582ae242e02acf9 (patch)
treea55adaf8625798e22550238ca3498442a7bf7663 /desktop
parent62d1632498d92b6e73b952c9d379edebe3052341 (diff)
tdf#97966 Drop 'static' keywords
Including no keywords from extern "C" blocks Change-Id: Icff7c0308843d6a7608be24d7fcf11fa079c7b72 Reviewed-on: https://gerrit.libreoffice.org/23672 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/dispatchwatcher.cxx2
-rw-r--r--desktop/source/deployment/misc/dp_misc.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/dispatchwatcher.cxx b/desktop/source/app/dispatchwatcher.cxx
index 9f1c7bd06fa9..7279a8f0368d 100644
--- a/desktop/source/app/dispatchwatcher.cxx
+++ b/desktop/source/app/dispatchwatcher.cxx
@@ -126,7 +126,7 @@ std::shared_ptr<const SfxFilter> impl_lookupExportFilterForUrl( const rtl::OUStr
return pBestMatch;
}
-static std::shared_ptr<const SfxFilter> impl_getExportFilterFromUrl(
+std::shared_ptr<const SfxFilter> impl_getExportFilterFromUrl(
const rtl::OUString& rUrl, const rtl::OUString& rFactory)
{
try
diff --git a/desktop/source/deployment/misc/dp_misc.cxx b/desktop/source/deployment/misc/dp_misc.cxx
index 24f23a585e30..28cf3d17b3c2 100644
--- a/desktop/source/deployment/misc/dp_misc.cxx
+++ b/desktop/source/deployment/misc/dp_misc.cxx
@@ -138,7 +138,7 @@ bool existsOfficePipe()
}
//get modification time
-static bool getModifyTimeTargetFile(const OUString &rFileURL, TimeValue &rTime)
+bool getModifyTimeTargetFile(const OUString &rFileURL, TimeValue &rTime)
{
salhelper::LinkResolver aResolver(osl_FileStatus_Mask_ModifyTime);