diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-01-15 14:19:24 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-01-15 14:19:24 +0100 |
commit | aaddbb975e914e46f3987986532ba5e4fda4e105 (patch) | |
tree | cd8fc6cdfc2f6edf0c7ed7e581bbad7a832ce887 /editeng/source/items | |
parent | 591ef977872998d0dd966b200589d29cf7e78f56 (diff) |
loplugin:implicitboolconversion
Change-Id: Idbee7d8c96082a88c9653556ec7f88f4e7ced973
Diffstat (limited to 'editeng/source/items')
-rw-r--r-- | editeng/source/items/numitem.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/items/numitem.cxx b/editeng/source/items/numitem.cxx index c90b97431eea..4b2b135b1811 100644 --- a/editeng/source/items/numitem.cxx +++ b/editeng/source/items/numitem.cxx @@ -298,7 +298,7 @@ SvStream& SvxNumberFormat::Store(SvStream &rStream, FontToSubsFontConverter pC nTempColor = COL_BLACK; WriteColor( rStream, nTempColor ); rStream.WriteUInt16( nBulletRelSize ); - rStream.WriteUInt16( IsShowSymbol() ); + rStream.WriteUInt16( sal_uInt16(IsShowSymbol()) ); rStream.WriteUInt16( mePositionAndSpaceMode ); rStream.WriteUInt16( meLabelFollowedBy ); @@ -681,7 +681,7 @@ SvStream& SvxNumRule::Store( SvStream &rStream ) rStream.WriteUInt16( nLevelCount ); //first save of nFeatureFlags for old versions rStream.WriteUInt16( nFeatureFlags ); - rStream.WriteUInt16( bContinuousNumbering ); + rStream.WriteUInt16( sal_uInt16(bContinuousNumbering) ); rStream.WriteUInt16( eNumberingType ); FontToSubsFontConverter pConverter = 0; |