From a987aa3be73ec29917567d16886c017ac9a0a3d8 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 13 Dec 2017 08:46:01 +0100 Subject: Make loplugin:salcall look into macros too "Indirect" calls to isSallCallFunction (for canonic and overridden FunctionDecls) already needed to handle many cases of FunctionDecls spanning macros, so it isn't that much more work to make that also work for cases called directly from VisitFunctionDecl. Change-Id: I529f148c8872b86aa1ef082c6cb73db8ab1866e7 Reviewed-on: https://gerrit.libreoffice.org/46367 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- include/i18nutil/unicode.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/i18nutil') diff --git a/include/i18nutil/unicode.hxx b/include/i18nutil/unicode.hxx index 6175e19fffd9..b3563e529a38 100644 --- a/include/i18nutil/unicode.hxx +++ b/include/i18nutil/unicode.hxx @@ -42,9 +42,9 @@ public: static sal_Unicode getUnicodeScriptStart(css::i18n::UnicodeScript type); static sal_Unicode getUnicodeScriptEnd(css::i18n::UnicodeScript type); static sal_uInt8 getUnicodeDirection( const sal_Unicode ch ); - static bool SAL_CALL isControl( const sal_Unicode ch); - static bool SAL_CALL isAlpha( const sal_Unicode ch); - static bool SAL_CALL isSpace( const sal_Unicode ch); + static bool isControl( const sal_Unicode ch); + static bool isAlpha( const sal_Unicode ch); + static bool isSpace( const sal_Unicode ch); static bool isWhiteSpace( const sal_Unicode ch); //Map an ISO 15924 script code to Latin/Asian/Complex/Weak -- cgit