summaryrefslogtreecommitdiff
path: root/sw/source/core/layout/atrfrm.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-03-03 09:01:36 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-03-03 09:02:37 +0100
commitc5d8c466afe97190e550c3d43b52713a0840b273 (patch)
tree079c206ece5603f11b994c0105e7ddc7fbddd31b /sw/source/core/layout/atrfrm.cxx
parent24a89b277208d8f3fa7987f5fe76a02286bbff25 (diff)
SwFmtHoriOrient: rename member variables missing their prefixes
Change-Id: Ic245fe20e364be8c4110a52f5f91b611adb187db
Diffstat (limited to 'sw/source/core/layout/atrfrm.cxx')
-rw-r--r--sw/source/core/layout/atrfrm.cxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/sw/source/core/layout/atrfrm.cxx b/sw/source/core/layout/atrfrm.cxx
index 961b70f5b7b3..7d4ee2ad5391 100644
--- a/sw/source/core/layout/atrfrm.cxx
+++ b/sw/source/core/layout/atrfrm.cxx
@@ -1430,24 +1430,24 @@ void SwFmtVertOrient::dumpAsXml(xmlTextWriterPtr pWriter) const
SwFmtHoriOrient::SwFmtHoriOrient( SwTwips nX, sal_Int16 eHori,
sal_Int16 eRel, bool bPos )
: SfxPoolItem( RES_HORI_ORIENT ),
- nXPos( nX ),
- eOrient( eHori ),
- eRelation( eRel ),
- bPosToggle( bPos )
+ m_nXPos( nX ),
+ m_eOrient( eHori ),
+ m_eRelation( eRel ),
+ m_bPosToggle( bPos )
{}
bool SwFmtHoriOrient::operator==( const SfxPoolItem& rAttr ) const
{
assert(SfxPoolItem::operator==(rAttr));
- return ( nXPos == static_cast<const SwFmtHoriOrient&>(rAttr).nXPos &&
- eOrient == static_cast<const SwFmtHoriOrient&>(rAttr).eOrient &&
- eRelation == static_cast<const SwFmtHoriOrient&>(rAttr).eRelation &&
- bPosToggle == static_cast<const SwFmtHoriOrient&>(rAttr).bPosToggle );
+ return ( m_nXPos == static_cast<const SwFmtHoriOrient&>(rAttr).m_nXPos &&
+ m_eOrient == static_cast<const SwFmtHoriOrient&>(rAttr).m_eOrient &&
+ m_eRelation == static_cast<const SwFmtHoriOrient&>(rAttr).m_eRelation &&
+ m_bPosToggle == static_cast<const SwFmtHoriOrient&>(rAttr).m_bPosToggle );
}
SfxPoolItem* SwFmtHoriOrient::Clone( SfxItemPool* ) const
{
- return new SwFmtHoriOrient( nXPos, eOrient, eRelation, bPosToggle );
+ return new SwFmtHoriOrient( m_nXPos, m_eOrient, m_eRelation, m_bPosToggle );
}
bool SwFmtHoriOrient::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const
@@ -1459,11 +1459,11 @@ bool SwFmtHoriOrient::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const
{
case MID_HORIORIENT_ORIENT:
{
- rVal <<= (sal_Int16)eOrient;
+ rVal <<= (sal_Int16)m_eOrient;
}
break;
case MID_HORIORIENT_RELATION:
- rVal <<= (sal_Int16)eRelation;
+ rVal <<= (sal_Int16)m_eRelation;
break;
case MID_HORIORIENT_POSITION:
rVal <<= (sal_Int32)convertTwipToMm100(GetPos());
@@ -1489,12 +1489,12 @@ bool SwFmtHoriOrient::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId )
{
sal_Int16 nVal = text::HoriOrientation::NONE;
rVal >>= nVal;
- eOrient = nVal;
+ m_eOrient = nVal;
}
break;
case MID_HORIORIENT_RELATION:
{
- eRelation = lcl_IntToRelation(rVal);
+ m_eRelation = lcl_IntToRelation(rVal);
}
break;
case MID_HORIORIENT_POSITION:
@@ -1521,10 +1521,10 @@ void SwFmtHoriOrient::dumpAsXml(xmlTextWriterPtr pWriter) const
{
xmlTextWriterStartElement(pWriter, BAD_CAST("swFmtHoriOrient"));
xmlTextWriterWriteAttribute(pWriter, BAD_CAST("whichId"), BAD_CAST(OString::number(Which()).getStr()));
- xmlTextWriterWriteAttribute(pWriter, BAD_CAST("nXPos"), BAD_CAST(OString::number(nXPos).getStr()));
- xmlTextWriterWriteAttribute(pWriter, BAD_CAST("eOrient"), BAD_CAST(OString::number(eOrient).getStr()));
- xmlTextWriterWriteAttribute(pWriter, BAD_CAST("eRelation"), BAD_CAST(OString::number(eRelation).getStr()));
- xmlTextWriterWriteAttribute(pWriter, BAD_CAST("bPosToggle"), BAD_CAST(OString::boolean(bPosToggle).getStr()));
+ xmlTextWriterWriteAttribute(pWriter, BAD_CAST("nXPos"), BAD_CAST(OString::number(m_nXPos).getStr()));
+ xmlTextWriterWriteAttribute(pWriter, BAD_CAST("eOrient"), BAD_CAST(OString::number(m_eOrient).getStr()));
+ xmlTextWriterWriteAttribute(pWriter, BAD_CAST("eRelation"), BAD_CAST(OString::number(m_eRelation).getStr()));
+ xmlTextWriterWriteAttribute(pWriter, BAD_CAST("bPosToggle"), BAD_CAST(OString::boolean(m_bPosToggle).getStr()));
xmlTextWriterEndElement(pWriter);
}