coverity#1028571 : Uninitialized scalar field

Change-Id: I810dad2b8e641c88605de998fc1e569208dde917
This commit is contained in:
Norbert Thiebaud 2014-01-28 20:44:53 -06:00
parent c0eba4b725
commit 6580708fcd

View File

@ -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(){}
};