summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-08 15:58:41 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-11 12:13:46 +0100
commit3af500580b1c82eabd60335c9ebc458a3f68850c (patch)
treee0ad105be694cfb46221d16e9ce987879794fa04 /configmgr
parent0f9a596aa853b4f2beeff25c131246a7b31492a4 (diff)
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 <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/configurationprovider.hxx6
-rw-r--r--configmgr/source/configurationregistry.hxx6
-rw-r--r--configmgr/source/defaultprovider.hxx6
-rw-r--r--configmgr/source/readonlyaccess.hxx6
-rw-r--r--configmgr/source/readwriteaccess.hxx6
-rw-r--r--configmgr/source/services.cxx4
-rw-r--r--configmgr/source/update.hxx6
7 files changed, 20 insertions, 20 deletions
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();
} }