[Libreoffice-commits] core.git: shell/source

Stephan Bergmann sbergman at redhat.com
Mon Dec 11 18:42:43 UTC 2017


 shell/source/backends/kde4be/kde4backend.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 72e5a125c973758e8a5dc489d6a861c92cfaa7a9
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Mon Dec 11 19:40:05 2017 +0100

    loplugin:salcall
    
    Change-Id: I735b8ae96ed06dd5914d4e868d11ecbd21ffb1ad

diff --git a/shell/source/backends/kde4be/kde4backend.cxx b/shell/source/backends/kde4be/kde4backend.cxx
index ab54e4a204ec..800465002c28 100644
--- a/shell/source/backends/kde4be/kde4backend.cxx
+++ b/shell/source/backends/kde4be/kde4backend.cxx
@@ -52,12 +52,12 @@
 
 namespace {
 
-OUString SAL_CALL getServiceImplementationName() {
+OUString getServiceImplementationName() {
     return OUString(
             "com.sun.star.comp.configuration.backend.KDE4Backend");
 }
 
-css::uno::Sequence< OUString > SAL_CALL getServiceSupportedServiceNames() {
+css::uno::Sequence< OUString > getServiceSupportedServiceNames() {
     OUString name(
             "com.sun.star.configuration.backend.KDE4Backend");
     return css::uno::Sequence< OUString >(&name, 1);
@@ -155,7 +155,7 @@ css::uno::Any Service::getPropertyValue(OUString const & PropertyName)
         PropertyName, static_cast< cppu::OWeakObject * >(this));
 }
 
-css::uno::Reference< css::uno::XInterface > SAL_CALL createInstance(
+css::uno::Reference< css::uno::XInterface > createInstance(
     css::uno::Reference< css::uno::XComponentContext > const &)
 {
     return static_cast< cppu::OWeakObject * >(new Service);
@@ -170,7 +170,7 @@ static cppu::ImplementationEntry const services[] = {
 
 }
 
-extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL kde4be1_component_getFactory(
+extern "C" SAL_DLLPUBLIC_EXPORT void * kde4be1_component_getFactory(
     char const * pImplName, void * pServiceManager, void * pRegistryKey)
 {
     return cppu::component_getFactoryHelper(


More information about the Libreoffice-commits mailing list