From 3af500580b1c82eabd60335c9ebc458a3f68850c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 8 Dec 2017 15:58:41 +0200 Subject: loplugin:salcall fix functions since cdecl is the default calling convention on Windows for such functions, the annotation is redundant. Change-Id: I1a85fa27e5ac65ce0e04a19bde74c90800ffaa2d Reviewed-on: https://gerrit.libreoffice.org/46164 Tested-by: Jenkins Reviewed-by: Noel Grandin --- configmgr/source/configurationprovider.hxx | 6 +++--- configmgr/source/configurationregistry.hxx | 6 +++--- configmgr/source/defaultprovider.hxx | 6 +++--- configmgr/source/readonlyaccess.hxx | 6 +++--- configmgr/source/readwriteaccess.hxx | 6 +++--- configmgr/source/services.cxx | 4 ++-- configmgr/source/update.hxx | 6 +++--- 7 files changed, 20 insertions(+), 20 deletions(-) (limited to 'configmgr/source') diff --git a/configmgr/source/configurationprovider.hxx b/configmgr/source/configurationprovider.hxx index f29a8c728976..143ce9548fcd 100644 --- a/configmgr/source/configurationprovider.hxx +++ b/configmgr/source/configurationprovider.hxx @@ -41,13 +41,13 @@ css::uno::Reference< css::uno::XInterface > createDefault( css::uno::Reference< css::uno::XComponentContext > const & context); -OUString SAL_CALL getImplementationName(); +OUString getImplementationName(); -css::uno::Sequence< OUString > SAL_CALL +css::uno::Sequence< OUString > getSupportedServiceNames(); css::uno::Reference< css::lang::XSingleComponentFactory > -SAL_CALL createFactory( +createFactory( cppu::ComponentFactoryFunc, OUString const &, css::uno::Sequence< OUString > const &, rtl_ModuleCount *); diff --git a/configmgr/source/configurationregistry.hxx b/configmgr/source/configurationregistry.hxx index 1bfda104dc1c..75c35884e044 100644 --- a/configmgr/source/configurationregistry.hxx +++ b/configmgr/source/configurationregistry.hxx @@ -35,14 +35,14 @@ namespace com { namespace sun { namespace star { namespace configmgr { namespace configuration_registry { -css::uno::Reference< css::uno::XInterface > SAL_CALL +css::uno::Reference< css::uno::XInterface > create( css::uno::Reference< css::uno::XComponentContext > const & context); -OUString SAL_CALL getImplementationName(); +OUString getImplementationName(); -css::uno::Sequence< OUString > SAL_CALL +css::uno::Sequence< OUString > getSupportedServiceNames(); } } diff --git a/configmgr/source/defaultprovider.hxx b/configmgr/source/defaultprovider.hxx index c3825ea46a88..d054137bf1d1 100644 --- a/configmgr/source/defaultprovider.hxx +++ b/configmgr/source/defaultprovider.hxx @@ -35,14 +35,14 @@ namespace com { namespace sun { namespace star { namespace configmgr { namespace default_provider { -css::uno::Reference< css::uno::XInterface > SAL_CALL +css::uno::Reference< css::uno::XInterface > create( css::uno::Reference< css::uno::XComponentContext > const & context); -OUString SAL_CALL getImplementationName(); +OUString getImplementationName(); -css::uno::Sequence< OUString > SAL_CALL +css::uno::Sequence< OUString > getSupportedServiceNames(); } } diff --git a/configmgr/source/readonlyaccess.hxx b/configmgr/source/readonlyaccess.hxx index 9b8d903d5504..c8d1a336c321 100644 --- a/configmgr/source/readonlyaccess.hxx +++ b/configmgr/source/readonlyaccess.hxx @@ -23,14 +23,14 @@ namespace com { namespace sun { namespace star { namespace configmgr { namespace read_only_access { -css::uno::Reference< css::uno::XInterface > SAL_CALL +css::uno::Reference< css::uno::XInterface > create( css::uno::Reference< css::uno::XComponentContext > const &); -OUString SAL_CALL getImplementationName(); +OUString getImplementationName(); -css::uno::Sequence< OUString > SAL_CALL +css::uno::Sequence< OUString > getSupportedServiceNames(); } } diff --git a/configmgr/source/readwriteaccess.hxx b/configmgr/source/readwriteaccess.hxx index 82f8300ccfe0..d891662d15aa 100644 --- a/configmgr/source/readwriteaccess.hxx +++ b/configmgr/source/readwriteaccess.hxx @@ -23,14 +23,14 @@ namespace com { namespace sun { namespace star { namespace configmgr { namespace read_write_access { -css::uno::Reference< css::uno::XInterface > SAL_CALL +css::uno::Reference< css::uno::XInterface > create( css::uno::Reference< css::uno::XComponentContext > const &); -OUString SAL_CALL getImplementationName(); +OUString getImplementationName(); -css::uno::Sequence< OUString > SAL_CALL +css::uno::Sequence< OUString > getSupportedServiceNames(); } } diff --git a/configmgr/source/services.cxx b/configmgr/source/services.cxx index 6affa5f1b79f..27675f93d766 100644 --- a/configmgr/source/services.cxx +++ b/configmgr/source/services.cxx @@ -38,7 +38,7 @@ namespace { -css::uno::Reference< css::uno::XInterface > SAL_CALL dummy( +css::uno::Reference< css::uno::XInterface > dummy( SAL_UNUSED_PARAMETER css::uno::Reference< css::uno::XComponentContext > const &) { @@ -74,7 +74,7 @@ static cppu::ImplementationEntry const services[] = { } -extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL configmgr_component_getFactory( +extern "C" SAL_DLLPUBLIC_EXPORT void * configmgr_component_getFactory( char const * pImplName, void * pServiceManager, void * pRegistryKey) { return cppu::component_getFactoryHelper( diff --git a/configmgr/source/update.hxx b/configmgr/source/update.hxx index c1ede9b21caf..6ea08645fd6b 100644 --- a/configmgr/source/update.hxx +++ b/configmgr/source/update.hxx @@ -35,14 +35,14 @@ namespace com { namespace sun { namespace star { namespace configmgr { namespace update { -css::uno::Reference< css::uno::XInterface > SAL_CALL +css::uno::Reference< css::uno::XInterface > create( css::uno::Reference< css::uno::XComponentContext > const &); -OUString SAL_CALL getImplementationName(); +OUString getImplementationName(); -css::uno::Sequence< OUString > SAL_CALL +css::uno::Sequence< OUString > getSupportedServiceNames(); } } -- cgit