diff options
author | Mark Page <aptitude@btconnect.com> | 2016-07-01 12:37:24 +0100 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-07-04 07:08:38 +0000 |
commit | 66576fc1f6cf34d658993fa5f92020bc29fe3f88 (patch) | |
tree | 3bead1a37104e9a4c25bcc2ad068bc81ec5d92ac /sw/source/uibase | |
parent | 3cc30343bef48c7f19a3b6774cfd500e00258f76 (diff) |
SfxModule to use initializer_list instead of variadic arguments
The compiler can perform type checking with initializer lists
Change-Id: I1d26b56a3a2b67fe719f33d758ca9b0c95ebd4d1
Reviewed-on: https://gerrit.libreoffice.org/26852
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/source/uibase')
-rw-r--r-- | sw/source/uibase/app/swmodule.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/uibase/app/swmodule.cxx b/sw/source/uibase/app/swmodule.cxx index c4bfa356ccb5..f436e09070e3 100644 --- a/sw/source/uibase/app/swmodule.cxx +++ b/sw/source/uibase/app/swmodule.cxx @@ -141,8 +141,7 @@ using namespace ::com::sun::star::uno; SwModule::SwModule( SfxObjectFactory* pWebFact, SfxObjectFactory* pFact, SfxObjectFactory* pGlobalFact ) - : SfxModule( ResMgr::CreateResMgr( "sw" ), pWebFact, - pFact, pGlobalFact, nullptr ), + : SfxModule( ResMgr::CreateResMgr( "sw" ), {pWebFact, pFact, pGlobalFact} ), m_pModuleConfig(nullptr), m_pUsrPref(nullptr), m_pWebUsrPref(nullptr), |