diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-30 14:06:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-30 14:06:04 +0200 |
commit | 9b39649fa1ce4d81658a6c9448cfdf76581813f0 (patch) | |
tree | 0c25ff370a7516169c89c762141c6412a651d5a2 /extensions | |
parent | 5f4f6b3146eb56c757b36eda43dcaf63c690ffb9 (diff) |
loplugin:staticanonymous
cf. <https://gerrit.libreoffice.org/#/c/23630/> "tdf#97966 Compiler plugin"; in
code not covered by Tamás's pending "tdf#97966 Drop 'static' keywords" changes.
Change-Id: Ifbaef83fdb1fde7e25fafd5746cdbf99c334c5be
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/update/check/updatecheck.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/update/check/updatecheck.cxx b/extensions/source/update/check/updatecheck.cxx index 74221ea0ddc2..9899472dba2a 100644 --- a/extensions/source/update/check/updatecheck.cxx +++ b/extensions/source/update/check/updatecheck.cxx @@ -98,7 +98,7 @@ OUString getReleaseNote(const UpdateInfo& rInfo, sal_uInt8 pos, bool autoDownloa namespace { -static inline OUString getBuildId() +inline OUString getBuildId() { OUString aPathVal("${$BRAND_BASE_DIR/" LIBO_ETC_FOLDER "/" SAL_CONFIGFILE("version") ":buildid}"); rtl::Bootstrap::expandMacros(aPathVal); @@ -107,7 +107,7 @@ static inline OUString getBuildId() #if defined LINUX || defined SOLARIS -static inline OUString getBaseInstallation() +inline OUString getBaseInstallation() { OUString aPathVal("$BRAND_BASE_DIR"); rtl::Bootstrap::expandMacros(aPathVal); @@ -196,7 +196,7 @@ OUString getImageFromFileName(const OUString& aFile) } -static uno::Reference< beans::XPropertySet > createMenuBarUI( +uno::Reference< beans::XPropertySet > createMenuBarUI( const uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< task::XJob >& xJob) { |