summaryrefslogtreecommitdiff
path: root/sw/source/uibase/app
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-06 10:16:23 +0200
committerNoel Grandin <noel@peralex.com>2016-06-06 10:16:23 +0200
commitabde31a2bc68302e1afafe1fcc3f5d85369010f8 (patch)
tree2a62afea93827f2822c194bf2c0706cab37eaf01 /sw/source/uibase/app
parent9f0ed9d8ebdc31fe546ba280966481a0b2a6994e (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 'sw/source/uibase/app')
-rw-r--r--sw/source/uibase/app/swmodule.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/app/swmodule.cxx b/sw/source/uibase/app/swmodule.cxx
index 3ab2832e698a..eae15531a905 100644
--- a/sw/source/uibase/app/swmodule.cxx
+++ b/sw/source/uibase/app/swmodule.cxx
@@ -140,7 +140,7 @@ using namespace ::com::sun::star::uno;
SwModule::SwModule( SfxObjectFactory* pWebFact,
SfxObjectFactory* pFact,
SfxObjectFactory* pGlobalFact )
- : SfxModule( ResMgr::CreateResMgr( "sw" ), pWebFact,
+ : SfxModule( ResMgr::CreateResMgr( "sw" ), false, pWebFact,
pFact, pGlobalFact, nullptr ),
m_pModuleConfig(nullptr),
m_pUsrPref(nullptr),