summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-05 11:59:19 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-08-05 11:50:45 +0000
commitf12476f0f61824f6bf5120d3176731b17a43b817 (patch)
treed94238485804d4937f1aaf9e68beebd52cb490e4 /scripting
parent99cb0d3e68921c52311b4dce032d8d2bf39a969f (diff)
loplugin:countusersofdefaultparams in oox..sd
Change-Id: I4504939a3957606979c6ac36af6611e1fe072d01 Reviewed-on: https://gerrit.libreoffice.org/27902 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'scripting')
-rw-r--r--scripting/source/vbaevents/eventhelper.cxx4
1 files changed, 2 insertions, 2 deletions
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