From dd0dceb51122b4e8e969f848d9f046e91962d254 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 6 Dec 2017 08:59:44 +0200 Subject: loplugin:salcall handle static methods Change-Id: Id6820abec4b8ca8bee26d62b333fd30b42a14aec Reviewed-on: https://gerrit.libreoffice.org/46007 Tested-by: Jenkins Reviewed-by: Noel Grandin --- unotools/source/config/eventcfg.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unotools') diff --git a/unotools/source/config/eventcfg.cxx b/unotools/source/config/eventcfg.cxx index 6f26ea335dcf..98cfd1a76dae 100644 --- a/unotools/source/config/eventcfg.cxx +++ b/unotools/source/config/eventcfg.cxx @@ -111,7 +111,7 @@ public: /// @throws css::uno::RuntimeException bool hasByName( const OUString& aName ); /// @throws css::uno::RuntimeException - static css::uno::Type SAL_CALL getElementType( ); + static css::uno::Type getElementType( ); /// @throws css::uno::RuntimeException bool hasElements() const; OUString const & GetEventName( GlobalEventId nID ) const; @@ -300,7 +300,7 @@ bool GlobalEventConfig_Impl::hasByName( const OUString& aName ) return pos != m_supportedEvents.end(); } -Type SAL_CALL GlobalEventConfig_Impl::getElementType( ) +Type GlobalEventConfig_Impl::getElementType( ) { //DF definitely not sure about this?? return cppu::UnoType>::get(); -- cgit