diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-12-11 19:40:05 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-12-11 19:40:05 +0100 |
commit | 72e5a125c973758e8a5dc489d6a861c92cfaa7a9 (patch) | |
tree | 4df0b779419d3c04ae48145405854e35b782cb2a /shell | |
parent | 2d9170ab14427e88893da353c3f154e242c05953 (diff) |
loplugin:salcall
Change-Id: I735b8ae96ed06dd5914d4e868d11ecbd21ffb1ad
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/backends/kde4be/kde4backend.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
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( |