From 66576fc1f6cf34d658993fa5f92020bc29fe3f88 Mon Sep 17 00:00:00 2001 From: Mark Page Date: Fri, 1 Jul 2016 12:37:24 +0100 Subject: 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 Reviewed-by: Noel Grandin --- basctl/source/basicide/basicmod.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'basctl') diff --git a/basctl/source/basicide/basicmod.hxx b/basctl/source/basicide/basicmod.hxx index b52a1c7a35a3..3bed4f242452 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, {pObjFact} ) { } public: static Module*& Get () { return mpModule; } -- cgit