summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-03-13 12:58:07 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-03-13 12:58:35 +0000
commitffc3c27130faec6c5337943975fa6ebf7623de36 (patch)
treec6874c243f1d0822028e33d46f2b0af081d071ed /editeng
parentf096e61a5f246976a5b1eb76f76e194702c1c0b5 (diff)
Conditional jump or move depends on uninitialised value
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/frmitems.cxx30
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)
{
}