diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-02-13 20:30:58 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-02-13 20:56:39 +0100 |
commit | a5ad4e7459b8cbb76478fd7fd621cd96853e67af (patch) | |
tree | acf113ca991df199351e66d8c35cde1c53a52666 /sfx2 | |
parent | b15a80f003fe27163e9a5c86ff170ffe0fbdf41a (diff) |
Fix member variables not initialized in the constructor
Change-Id: Ibd7138a185e4d4f87f36d59acd398387a52e9d34
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/module.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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) { } |