diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-06 10:16:23 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-06-06 10:16:23 +0200 |
commit | abde31a2bc68302e1afafe1fcc3f5d85369010f8 (patch) | |
tree | 2a62afea93827f2822c194bf2c0706cab37eaf01 /basctl | |
parent | 9f0ed9d8ebdc31fe546ba280966481a0b2a6994e (diff) |
Revert "Simplify sfx2 removing SfxModuleArr_Impl and dummy SfxModule flag"
This reverts commit e319ef1171dab61fff2201f5c1470ca09894c395.
Apparently, at some point, someone added a 'bool bDummy' param to
SfxModule, but only updated 2 of the 5 callsites. Since we're
passing in pointers here, at the other call sites, the bDummy
param evaluated to 'true'.
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/basicmod.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/basicmod.hxx b/basctl/source/basicide/basicmod.hxx index b52a1c7a35a3..f4629278a003 100644 --- a/basctl/source/basicide/basicmod.hxx +++ b/basctl/source/basicide/basicmod.hxx @@ -31,7 +31,7 @@ class Module : public SfxModule static Module* mpModule; public: Module ( ResMgr *pMgr, SfxObjectFactory *pObjFact) : - SfxModule( pMgr, pObjFact, nullptr ) + SfxModule( pMgr, false, pObjFact, nullptr ) { } public: static Module*& Get () { return mpModule; } |