summaryrefslogtreecommitdiff
path: root/editeng/source/items/paraitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'editeng/source/items/paraitem.cxx')
-rw-r--r--editeng/source/items/paraitem.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/editeng/source/items/paraitem.cxx b/editeng/source/items/paraitem.cxx
index e09f0186b4ce..3c95e3de90d7 100644
--- a/editeng/source/items/paraitem.cxx
+++ b/editeng/source/items/paraitem.cxx
@@ -1358,9 +1358,9 @@ SfxPoolItem* SvxHangingPunctuationItem::Clone( SfxItemPool * ) const
SfxPoolItem* SvxHangingPunctuationItem::Create(SvStream & rStrm, sal_uInt16) const
{
- bool nValue;
- rStrm.ReadCharAsBool( nValue );
- return new SvxHangingPunctuationItem( nValue, Which() );
+ bool bValue;
+ rStrm.ReadCharAsBool( bValue );
+ return new SvxHangingPunctuationItem( bValue, Which() );
}
sal_uInt16 SvxHangingPunctuationItem::GetVersion( sal_uInt16 nFFVer ) const
@@ -1398,9 +1398,9 @@ SfxPoolItem* SvxForbiddenRuleItem::Clone( SfxItemPool * ) const
SfxPoolItem* SvxForbiddenRuleItem::Create(SvStream & rStrm, sal_uInt16) const
{
- bool nValue;
- rStrm.ReadCharAsBool( nValue );
- return new SvxForbiddenRuleItem( nValue, Which() );
+ bool bValue;
+ rStrm.ReadCharAsBool( bValue );
+ return new SvxForbiddenRuleItem( bValue, Which() );
}
sal_uInt16 SvxForbiddenRuleItem::GetVersion( sal_uInt16 nFFVer ) const