From f12476f0f61824f6bf5120d3176731b17a43b817 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 5 Aug 2016 11:59:19 +0200 Subject: loplugin:countusersofdefaultparams in oox..sd Change-Id: I4504939a3957606979c6ac36af6611e1fe072d01 Reviewed-on: https://gerrit.libreoffice.org/27902 Tested-by: Jenkins Reviewed-by: Noel Grandin --- scripting/source/vbaevents/eventhelper.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripting') diff --git a/scripting/source/vbaevents/eventhelper.cxx b/scripting/source/vbaevents/eventhelper.cxx index 0a35f1c7450b..262bd0d29a31 100644 --- a/scripting/source/vbaevents/eventhelper.cxx +++ b/scripting/source/vbaevents/eventhelper.cxx @@ -620,7 +620,7 @@ protected: private: void setShellFromModel(); - void firing_Impl( const ScriptEvent& evt, Any *pSyncRet=nullptr ) throw( RuntimeException, std::exception ); + void firing_Impl( const ScriptEvent& evt, Any *pSyncRet ) throw( RuntimeException, std::exception ); Reference< frame::XModel > m_xModel; bool m_bDocClosed; @@ -672,7 +672,7 @@ EventListener::disposing(const lang::EventObject&) throw( RuntimeException, std void SAL_CALL EventListener::firing(const ScriptEvent& evt) throw(RuntimeException, std::exception) { - firing_Impl( evt ); + firing_Impl( evt, nullptr ); } Any SAL_CALL -- cgit