diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-04 20:02:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-05 08:00:23 +0100 |
commit | 9ad04dad665f9bfc054d0db4174f18ce154e20fc (patch) | |
tree | b1bca8c8aa4fee1f2395194b4febf9c05f0bbecf /sfx2/source | |
parent | 29df3d5b291e0857d337a311b6ae4054b0bdc026 (diff) |
remove unused SfxCallMode enum value
Change-Id: Ie092724ac22088d607f6250fbed764269b3707ba
Reviewed-on: https://gerrit.libreoffice.org/64571
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/dialog/mgetempl.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/dialog/templdlg.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/dialog/mgetempl.cxx b/sfx2/source/dialog/mgetempl.cxx index 73dd20d49cf6..6b80a35e4e23 100644 --- a/sfx2/source/dialog/mgetempl.cxx +++ b/sfx2/source/dialog/mgetempl.cxx @@ -372,7 +372,7 @@ bool SfxManageStyleSheetPage::Execute_Impl( pItems[ nCount++ ] = nullptr; const SfxPoolItem* pItem = rDispatcher.Execute( - nId, SfxCallMode::SYNCHRON | SfxCallMode::RECORD | SfxCallMode::MODAL, + nId, SfxCallMode::SYNCHRON | SfxCallMode::RECORD, pItems ); return pItem != nullptr; diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx index 45959e32e135..4e9ffe77520d 100644 --- a/sfx2/source/dialog/templdlg.cxx +++ b/sfx2/source/dialog/templdlg.cxx @@ -1556,7 +1556,7 @@ bool SfxCommonTemplateDialog_Impl::Execute_Impl( DeletionWatcher aDeleted(*this); sal_uInt16 nModi = pModifier ? *pModifier : 0; const SfxPoolItem* pItem = rDispatcher.Execute( - nId, SfxCallMode::SYNCHRON | SfxCallMode::RECORD | SfxCallMode::MODAL, + nId, SfxCallMode::SYNCHRON | SfxCallMode::RECORD, pItems, nModi ); // Dialog can be destroyed while in Execute() because started |