diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-03-13 12:58:07 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-03-13 12:58:35 +0000 |
commit | ffc3c27130faec6c5337943975fa6ebf7623de36 (patch) | |
tree | c6874c243f1d0822028e33d46f2b0af081d071ed /editeng | |
parent | f096e61a5f246976a5b1eb76f76e194702c1c0b5 (diff) |
Conditional jump or move depends on uninitialised value
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/frmitems.cxx | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/editeng/source/items/frmitems.cxx b/editeng/source/items/frmitems.cxx index f38ba5da886f..c2dbce821897 100644 --- a/editeng/source/items/frmitems.cxx +++ b/editeng/source/items/frmitems.cxx @@ -792,28 +792,26 @@ bool SvxLRSpaceItem::HasMetrics() const // class SvxULSpaceItem -------------------------------------------------- -SvxULSpaceItem::SvxULSpaceItem( const sal_uInt16 nId ) : - - SfxPoolItem( nId ), - - nUpper( 0 ), - nLower( 0 ), - nPropUpper( 100 ), - nPropLower( 100 ) +SvxULSpaceItem::SvxULSpaceItem( const sal_uInt16 nId ) + : SfxPoolItem(nId) + , nUpper(0) + , nLower(0) + , bContext(false) + , nPropUpper(100) + , nPropLower(100) { } // ----------------------------------------------------------------------- SvxULSpaceItem::SvxULSpaceItem( const sal_uInt16 nUp, const sal_uInt16 nLow, - const sal_uInt16 nId ) : - - SfxPoolItem( nId ), - - nUpper( nUp ), - nLower( nLow ), - nPropUpper( 100 ), - nPropLower( 100 ) + const sal_uInt16 nId ) + : SfxPoolItem(nId) + , nUpper(nUp) + , nLower(nLow) + , bContext(false) + , nPropUpper(100) + , nPropLower(100) { } |