diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-30 13:30:44 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-31 09:40:57 +0100 |
commit | 3ad6957dc12c0667a69ca6b8361ccde490f9c1da (patch) | |
tree | df3b87e6aa8f6f7d8e7ae8e78830921ce8f97471 /sfx2/source/config | |
parent | c2b018b94408703aef4e5d3429a9c0ab826f5b7c (diff) |
loplugin:constantparam in sfx2
Change-Id: Id52809401fb848d7169a665903e67ba28f4af598
Reviewed-on: https://gerrit.libreoffice.org/44084
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/config')
-rw-r--r-- | sfx2/source/config/evntconf.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/config/evntconf.cxx b/sfx2/source/config/evntconf.cxx index 58c6f2251feb..9de6fb043487 100644 --- a/sfx2/source/config/evntconf.cxx +++ b/sfx2/source/config/evntconf.cxx @@ -242,9 +242,9 @@ void SfxEventConfiguration::ConfigureEvent( const OUString& aName, const SvxMacr } -SvxMacro* SfxEventConfiguration::ConvertToMacro( const css::uno::Any& rElement, SfxObjectShell* pDoc, bool bBlowUp ) +SvxMacro* SfxEventConfiguration::ConvertToMacro( const css::uno::Any& rElement, SfxObjectShell* pDoc ) { - return SfxEvents_Impl::ConvertToMacro( rElement, pDoc, bBlowUp ); + return SfxEvents_Impl::ConvertToMacro( rElement, pDoc, true/*bBlowUp*/ ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |