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 --- dtrans/source/cnttype/mcnttype.cxx | 2 +- dtrans/source/cnttype/mcnttype.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'dtrans/source') diff --git a/dtrans/source/cnttype/mcnttype.cxx b/dtrans/source/cnttype/mcnttype.cxx index 2a405b5a0e74..3f982dd8a62c 100644 --- a/dtrans/source/cnttype/mcnttype.cxx +++ b/dtrans/source/cnttype/mcnttype.cxx @@ -333,7 +333,7 @@ void CMimeContentType::comment() } } -bool SAL_CALL CMimeContentType::isInRange( const OUString& aChr, const OUString& aRange ) +bool CMimeContentType::isInRange( const OUString& aChr, const OUString& aRange ) { return ( aRange.indexOf( aChr ) > -1 ); } diff --git a/dtrans/source/cnttype/mcnttype.hxx b/dtrans/source/cnttype/mcnttype.hxx index 61e9594b2ba8..35fb37fbdba1 100644 --- a/dtrans/source/cnttype/mcnttype.hxx +++ b/dtrans/source/cnttype/mcnttype.hxx @@ -60,7 +60,7 @@ private: OUString quotedPValue( ); OUString nonquotedPValue( ); void comment(); - static bool SAL_CALL isInRange( const OUString& aChr, const OUString& aRange ); + static bool isInRange( const OUString& aChr, const OUString& aRange ); private: ::osl::Mutex m_aMutex; -- cgit