diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-04 12:50:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-04 13:44:18 +0200 |
commit | a20b62dac893af02cda0972f1c43cbf8377080cf (patch) | |
tree | e4881ec792f215b80152add7731ec73f1ea96acd /editeng | |
parent | 20f14ed4a1c65dfadc1d8cfe0157f4a5f7ba4eb6 (diff) |
svl/eitem.hxx: sal_Bool->bool
Change-Id: I45dfd2429a490af3cc80f51340e0c05a91425668
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/textitem.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx index 7e8b813e133e..b3f8208a4180 100644 --- a/editeng/source/items/textitem.cxx +++ b/editeng/source/items/textitem.cxx @@ -607,7 +607,7 @@ bool SvxPostureItem::GetBoolValue() const -void SvxPostureItem::SetBoolValue( sal_Bool bVal ) +void SvxPostureItem::SetBoolValue( bool bVal ) { SetValue( (sal_uInt16)(bVal ? ITALIC_NORMAL : ITALIC_NONE) ); } @@ -637,7 +637,7 @@ bool SvxWeightItem::GetBoolValue() const -void SvxWeightItem::SetBoolValue( sal_Bool bVal ) +void SvxWeightItem::SetBoolValue( bool bVal ) { SetValue( (sal_uInt16)(bVal ? WEIGHT_BOLD : WEIGHT_NORMAL) ); } @@ -1292,7 +1292,7 @@ bool SvxTextLineItem::GetBoolValue() const -void SvxTextLineItem::SetBoolValue( sal_Bool bVal ) +void SvxTextLineItem::SetBoolValue( bool bVal ) { SetValue( (sal_uInt16)(bVal ? UNDERLINE_SINGLE : UNDERLINE_NONE) ); } @@ -1522,7 +1522,7 @@ bool SvxCrossedOutItem::GetBoolValue() const -void SvxCrossedOutItem::SetBoolValue( sal_Bool bVal ) +void SvxCrossedOutItem::SetBoolValue( bool bVal ) { SetValue( (sal_uInt16)(bVal ? STRIKEOUT_SINGLE : STRIKEOUT_NONE) ); } |