diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-12-20 09:20:13 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-12-20 13:09:28 +0100 |
commit | fd2c1c5915fdcb23c2af5a3f4c0efe130174838d (patch) | |
tree | 3d168e5300bd3d78195de6bfa7e0207851ea6b05 /shell | |
parent | c6c1c7e6031f8b438cb8ad8b3eaf79abc2771ff6 (diff) |
loplugin:salcall (clang-cl)
Change-Id: Iebbbd8e20ef8d5eb28d8594e142ea323aaa63a82
Reviewed-on: https://gerrit.libreoffice.org/46835
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/backends/wininetbe/wininetbackend.cxx | 4 | ||||
-rw-r--r-- | shell/source/backends/wininetbe/wininetbackend.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/shell/source/backends/wininetbe/wininetbackend.cxx b/shell/source/backends/wininetbe/wininetbackend.cxx index b1006803d065..bed1e270cf6d 100644 --- a/shell/source/backends/wininetbe/wininetbackend.cxx +++ b/shell/source/backends/wininetbe/wininetbackend.cxx @@ -341,7 +341,7 @@ css::uno::Any WinInetBackend::getPropertyValue( } } -OUString SAL_CALL WinInetBackend::getBackendName() { +OUString WinInetBackend::getBackendName() { return OUString("com.sun.star.comp.configuration.backend.WinInetBackend") ; } @@ -350,7 +350,7 @@ OUString SAL_CALL WinInetBackend::getImplementationName() return getBackendName() ; } -uno::Sequence<OUString> SAL_CALL WinInetBackend::getBackendServiceNames() +uno::Sequence<OUString> WinInetBackend::getBackendServiceNames() { uno::Sequence<OUString> aServiceNameList { "com.sun.star.configuration.backend.WinInetBackend" }; diff --git a/shell/source/backends/wininetbe/wininetbackend.hxx b/shell/source/backends/wininetbe/wininetbackend.hxx index b1df7d7a76a3..8478f3512f46 100644 --- a/shell/source/backends/wininetbe/wininetbackend.hxx +++ b/shell/source/backends/wininetbe/wininetbackend.hxx @@ -52,13 +52,13 @@ class WinInetBackend : public ::cppu::WeakImplHelper < @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 |