diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-12-21 11:17:21 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-12-21 13:49:01 +0100 |
commit | 292639d76e3eb47c8a94db17203d8b7d3cbacf37 (patch) | |
tree | 5c51df45d6e0071afb7589fa1c628a2b10dfc10a /shell | |
parent | 1d55c1baed9977bad449691012807c6f09e2fca8 (diff) |
loplugin:salcall (macOS)
Change-Id: Ic0b64c396356eb33ec42e65c71660d40e7dfcd40
Reviewed-on: https://gerrit.libreoffice.org/46892
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/backends/macbe/macbackend.hxx | 4 | ||||
-rw-r--r-- | shell/source/backends/macbe/macbackend.mm | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/shell/source/backends/macbe/macbackend.hxx b/shell/source/backends/macbe/macbackend.hxx index 0af641f13fef..b1bd910c21aa 100644 --- a/shell/source/backends/macbe/macbackend.hxx +++ b/shell/source/backends/macbe/macbackend.hxx @@ -50,14 +50,14 @@ public: @return implementation name */ - static OUString SAL_CALL getBackendName(); + static OUString getBackendName(); /** Provides the supported services names @return service names */ - static uno::Sequence<OUString> SAL_CALL getBackendServiceNames(); + static uno::Sequence<OUString> getBackendServiceNames(); // XPropertySet virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL diff --git a/shell/source/backends/macbe/macbackend.mm b/shell/source/backends/macbe/macbackend.mm index 14628e91c728..5c5c0cfafae7 100644 --- a/shell/source/backends/macbe/macbackend.mm +++ b/shell/source/backends/macbe/macbackend.mm @@ -373,7 +373,7 @@ css::uno::Any MacOSXBackend::getPropertyValue( } } -rtl::OUString SAL_CALL MacOSXBackend::getBackendName(void) +rtl::OUString MacOSXBackend::getBackendName(void) { return rtl::OUString("com.sun.star.comp.configuration.backend.MacOSXBackend"); } @@ -383,7 +383,7 @@ rtl::OUString SAL_CALL MacOSXBackend::getImplementationName(void) return getBackendName(); } -uno::Sequence<rtl::OUString> SAL_CALL MacOSXBackend::getBackendServiceNames(void) +uno::Sequence<rtl::OUString> MacOSXBackend::getBackendServiceNames(void) { uno::Sequence<OUString> aServiceNameList { "com.sun.star.configuration.backend.MacOSXBackend" }; |