From a5ad4e7459b8cbb76478fd7fd621cd96853e67af Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Wed, 13 Feb 2013 20:30:58 +0100 Subject: Fix member variables not initialized in the constructor Change-Id: Ibd7138a185e4d4f87f36d59acd398387a52e9d34 --- sfx2/source/appl/module.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sfx2') diff --git a/sfx2/source/appl/module.cxx b/sfx2/source/appl/module.cxx index 9264d598e9a0..a73445cfee07 100644 --- a/sfx2/source/appl/module.cxx +++ b/sfx2/source/appl/module.cxx @@ -63,7 +63,7 @@ public: }; SfxModule_Impl::SfxModule_Impl() - : pSlotPool(0) + : pSlotPool(0), pTbxCtrlFac(0), pStbCtrlFac(0), pMenuCtrlFac(0), pFactArr(0), pImgListSmall(0), pImgListBig(0) { } -- cgit