shell/source/backends/macbe/macbackend.hxx | 4 ++-- shell/source/backends/macbe/macbackend.mm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit 292639d76e3eb47c8a94db17203d8b7d3cbacf37 Author: Stephan Bergmann <[email protected]> Date: Thu Dec 21 11:17:21 2017 +0100 loplugin:salcall (macOS) Change-Id: Ic0b64c396356eb33ec42e65c71660d40e7dfcd40 Reviewed-on: https://gerrit.libreoffice.org/46892 Tested-by: Jenkins <[email protected]> Reviewed-by: Stephan Bergmann <[email protected]> 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" }; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
