summaryrefslogtreecommitdiff
path: root/sw/inc/fmtornt.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-05-31 21:16:26 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-05-31 21:29:12 +0200
commit6dcc46af5a47cef1f6e52835f3e8ebd17a0be234 (patch)
tree9ad7ae9e4bff21cf8e71758493a64863e7f7249b /sw/inc/fmtornt.hxx
parent886a7b6d66e2e1c60f7163e959a537ecc73e9927 (diff)
SwFmtVertOrient: rename member variables missing their prefixes
Change-Id: I83922fa1abe7830b12fcd811c9391ae8fff853c9
Diffstat (limited to 'sw/inc/fmtornt.hxx')
-rw-r--r--sw/inc/fmtornt.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/inc/fmtornt.hxx b/sw/inc/fmtornt.hxx
index 2e7e01b4fca8..bd97badcec9a 100644
--- a/sw/inc/fmtornt.hxx
+++ b/sw/inc/fmtornt.hxx
@@ -32,9 +32,9 @@ class IntlWrapper;
class SW_DLLPUBLIC SwFmtVertOrient: public SfxPoolItem
{
- SwTwips nYPos; ///< Contains *always* the current RelPos.
- sal_Int16 eOrient;
- sal_Int16 eRelation;
+ SwTwips m_nYPos; ///< Contains *always* the current RelPos.
+ sal_Int16 m_eOrient;
+ sal_Int16 m_eRelation;
public:
TYPEINFO_OVERRIDE();
SwFmtVertOrient( SwTwips nY = 0, sal_Int16 eVert = com::sun::star::text::VertOrientation::NONE,
@@ -55,13 +55,13 @@ public:
SvStream& Store(SvStream &rStream, sal_uInt16 itemVersion) const SAL_OVERRIDE;
SfxPoolItem* Create(SvStream &rStream, sal_uInt16 itemVersion) const SAL_OVERRIDE;
- sal_Int16 GetVertOrient() const { return eOrient; }
- sal_Int16 GetRelationOrient() const { return eRelation; }
- void SetVertOrient( sal_Int16 eNew ) { eOrient = eNew; }
- void SetRelationOrient( sal_Int16 eNew ) { eRelation = eNew; }
+ sal_Int16 GetVertOrient() const { return m_eOrient; }
+ sal_Int16 GetRelationOrient() const { return m_eRelation; }
+ void SetVertOrient( sal_Int16 eNew ) { m_eOrient = eNew; }
+ void SetRelationOrient( sal_Int16 eNew ) { m_eRelation = eNew; }
- SwTwips GetPos() const { return nYPos; }
- void SetPos( SwTwips nNew ) { nYPos = nNew; }
+ SwTwips GetPos() const { return m_nYPos; }
+ void SetPos( SwTwips nNew ) { m_nYPos = nNew; }
};
class SW_DLLPUBLIC SwFmtHoriOrient: public SfxPoolItem
@@ -101,9 +101,9 @@ public:
inline SwFmtVertOrient &SwFmtVertOrient::operator=( const SwFmtVertOrient &rCpy )
{
- nYPos = rCpy.GetPos();
- eOrient = rCpy.GetVertOrient();
- eRelation = rCpy.GetRelationOrient();
+ m_nYPos = rCpy.GetPos();
+ m_eOrient = rCpy.GetVertOrient();
+ m_eRelation = rCpy.GetRelationOrient();
return *this;
}
inline SwFmtHoriOrient &SwFmtHoriOrient::operator=( const SwFmtHoriOrient &rCpy )