summaryrefslogtreecommitdiff
path: root/sw/inc/fmtornt.hxx
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/inc/fmtornt.hxx
parent24a89b277208d8f3fa7987f5fe76a02286bbff25 (diff)
SwFmtHoriOrient: rename member variables missing their prefixes
Change-Id: Ic245fe20e364be8c4110a52f5f91b611adb187db
Diffstat (limited to 'sw/inc/fmtornt.hxx')
-rw-r--r--sw/inc/fmtornt.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/sw/inc/fmtornt.hxx b/sw/inc/fmtornt.hxx
index 150f61a70f45..df33db016824 100644
--- a/sw/inc/fmtornt.hxx
+++ b/sw/inc/fmtornt.hxx
@@ -68,10 +68,10 @@ public:
class SW_DLLPUBLIC SwFmtHoriOrient: public SfxPoolItem
{
- SwTwips nXPos; ///< Contains *always* the current RelPos.
- sal_Int16 eOrient;
- sal_Int16 eRelation;
- bool bPosToggle : 1; ///< Flip position on even pages.
+ SwTwips m_nXPos; ///< Contains *always* the current RelPos.
+ sal_Int16 m_eOrient;
+ sal_Int16 m_eRelation;
+ bool m_bPosToggle : 1; ///< Flip position on even pages.
public:
TYPEINFO_OVERRIDE();
SwFmtHoriOrient( SwTwips nX = 0, sal_Int16 eHori = com::sun::star::text::HoriOrientation::NONE,
@@ -89,16 +89,16 @@ public:
virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const SAL_OVERRIDE;
virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) SAL_OVERRIDE;
- sal_Int16 GetHoriOrient() const { return eOrient; }
- sal_Int16 GetRelationOrient() const { return eRelation; }
- void SetHoriOrient( sal_Int16 eNew ) { eOrient = eNew; }
- void SetRelationOrient( sal_Int16 eNew ) { eRelation = eNew; }
+ sal_Int16 GetHoriOrient() const { return m_eOrient; }
+ sal_Int16 GetRelationOrient() const { return m_eRelation; }
+ void SetHoriOrient( sal_Int16 eNew ) { m_eOrient = eNew; }
+ void SetRelationOrient( sal_Int16 eNew ) { m_eRelation = eNew; }
- SwTwips GetPos() const { return nXPos; }
- void SetPos( SwTwips nNew ) { nXPos = nNew; }
+ SwTwips GetPos() const { return m_nXPos; }
+ void SetPos( SwTwips nNew ) { m_nXPos = nNew; }
- bool IsPosToggle() const { return bPosToggle; }
- void SetPosToggle( bool bNew ) { bPosToggle = bNew; }
+ bool IsPosToggle() const { return m_bPosToggle; }
+ void SetPosToggle( bool bNew ) { m_bPosToggle = bNew; }
void dumpAsXml(struct _xmlTextWriter* pWriter) const SAL_OVERRIDE;
};
@@ -112,10 +112,10 @@ inline SwFmtVertOrient &SwFmtVertOrient::operator=( const SwFmtVertOrient &rCpy
}
inline SwFmtHoriOrient &SwFmtHoriOrient::operator=( const SwFmtHoriOrient &rCpy )
{
- nXPos = rCpy.GetPos();
- eOrient = rCpy.GetHoriOrient();
- eRelation = rCpy.GetRelationOrient();
- bPosToggle = rCpy.IsPosToggle();
+ m_nXPos = rCpy.GetPos();
+ m_eOrient = rCpy.GetHoriOrient();
+ m_eRelation = rCpy.GetRelationOrient();
+ m_bPosToggle = rCpy.IsPosToggle();
return *this;
}