summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-11 11:12:36 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-11 11:52:30 +0100
commitf730fafc037fa79de8ee78ba9757e6275b1c146a (patch)
tree715452bdfd6613a7b12be79fdaa4f7d5eef0f069 /editeng
parent325e586dd0b4ffd59e03a61e669a106b6d4a00ce (diff)
coverity#984086 Uninitialized scalar field
Change-Id: Iab787537a4212e58710a1db1b30f953784824dfa
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/bulitem.cxx5
1 files changed, 1 insertions, 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;