From 6580708fcdc59271b7dd56334ac2bc9d7565b4cc Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Tue, 28 Jan 2014 20:44:53 -0600 Subject: [PATCH] coverity#1028571 : Uninitialized scalar field Change-Id: I810dad2b8e641c88605de998fc1e569208dde917 --- include/svx/nbdtmg.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/svx/nbdtmg.hxx b/include/svx/nbdtmg.hxx index bad5c14e9d7d..028b4571f135 100644 --- a/include/svx/nbdtmg.hxx +++ b/include/svx/nbdtmg.hxx @@ -97,12 +97,12 @@ class SVX_DLLPUBLIC BulletsSettings_Impl:public BulletsSettings { public: sal_Unicode cBulletChar; - //rtl::OUString sBulletFont; Font aFont; public: - BulletsSettings_Impl(NBType eTy) : - BulletsSettings(eTy) + BulletsSettings_Impl(NBType eTy) + : BulletsSettings(eTy) + , cBulletChar(0) {} virtual ~BulletsSettings_Impl(){} };