diff options
author | Mark Page <aptitude@btconnect.com> | 2016-06-03 11:16:49 +0100 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-06 07:40:25 +0000 |
commit | e319ef1171dab61fff2201f5c1470ca09894c395 (patch) | |
tree | 357f5ac9c42287c66e057c13781a030fa03233f9 /starmath | |
parent | 9d4bc00abbada676e17ff44c5bc1cc7a77765575 (diff) |
Simplify sfx2 removing SfxModuleArr_Impl and dummy SfxModule flag
The SfxModuleArr_Impl is a static container of SfxModule, since
this is private to the SfxModule class it does not require
wrapping.
The bDummy flag is unused, and complicates the class
Change-Id: Ib03b215543a0c37d4edf20b2d0fc141a783e115e
Reviewed-on: https://gerrit.libreoffice.org/25859
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/smmod.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/smmod.cxx b/starmath/source/smmod.cxx index 1d8fa98f2ea8..02a45263e2ff 100644 --- a/starmath/source/smmod.cxx +++ b/starmath/source/smmod.cxx @@ -159,7 +159,7 @@ void SmModule::InitInterface_Impl() } SmModule::SmModule(SfxObjectFactory* pObjFact) : - SfxModule(ResMgr::CreateResMgr("sm"), false, pObjFact, nullptr) + SfxModule(ResMgr::CreateResMgr("sm"), pObjFact, nullptr) { SetName("StarMath"); |