From f730fafc037fa79de8ee78ba9757e6275b1c146a Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 11 May 2014 11:12:36 +0100 Subject: coverity#984086 Uninitialized scalar field Change-Id: Iab787537a4212e58710a1db1b30f953784824dfa --- editeng/source/items/bulitem.cxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/editeng/source/items/bulitem.cxx b/editeng/source/items/bulitem.cxx index a6bf7a37eb88..4492db17c62e 100644 --- a/editeng/source/items/bulitem.cxx +++ b/editeng/source/items/bulitem.cxx @@ -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; -- cgit