Kaydet (Commit) f730fafc authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#984086 Uninitialized scalar field

Change-Id: Iab787537a4212e58710a1db1b30f953784824dfa
üst 325e586d
......@@ -109,11 +109,10 @@ SvxBulletItem::SvxBulletItem( sal_uInt16 _nWhich ) : SfxPoolItem( _nWhich )
nValidMask = 0xFFFF;
}
SvxBulletItem::SvxBulletItem( SvStream& rStrm, sal_uInt16 _nWhich )
: SfxPoolItem(_nWhich)
, pGraphicObject(NULL)
, nStart(0)
, nStyle(0)
{
rStrm.ReadUInt16( nStyle );
......@@ -166,8 +165,6 @@ SvxBulletItem::SvxBulletItem( SvStream& rStrm, sal_uInt16 _nWhich )
nValidMask = 0xFFFF;
}
SvxBulletItem::SvxBulletItem( const SvxBulletItem& rItem) : SfxPoolItem( rItem )
{
aFont = rItem.aFont;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment