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 --- dbaccess/source/ui/inc/sbamultiplex.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dbaccess') diff --git a/dbaccess/source/ui/inc/sbamultiplex.hxx b/dbaccess/source/ui/inc/sbamultiplex.hxx index ddc5297554ae..75fffbff1718 100644 --- a/dbaccess/source/ui/inc/sbamultiplex.hxx +++ b/dbaccess/source/ui/inc/sbamultiplex.hxx @@ -85,8 +85,8 @@ namespace dbaui #define END_DECLARE_LISTENER_MULTIPLEXER() \ /* resolve ambiguity : both OWeakObject and OInterfaceContainerHelper2 have these memory operators */ \ - void * SAL_CALL operator new( size_t size ) throw() { return OSbaWeakSubObject::operator new(size); } \ - void SAL_CALL operator delete( void * p ) throw() { OSbaWeakSubObject::operator delete(p); } \ + void * operator new( size_t size ) throw() { return OSbaWeakSubObject::operator new(size); } \ + void operator delete( void * p ) throw() { OSbaWeakSubObject::operator delete(p); } \ }; \ // implementation of a listener multiplexer class -- cgit