diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-10-27 08:41:41 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-10-27 08:43:26 +0100 |
commit | d82d89ad27657a9f937e8ed44574626e1564102a (patch) | |
tree | 2dd02bc4c2a3f192a0847ffe669582058181ddcd /sw/inc/swtable.hxx | |
parent | d0a09f854e054bf3b7df312190780db8e1873ef0 (diff) |
sw: prefix members of SwTableLine
Change-Id: I89c434ba488963fdbaa9025bdd1dd420ab255dac
Diffstat (limited to 'sw/inc/swtable.hxx')
-rw-r--r-- | sw/inc/swtable.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/inc/swtable.hxx b/sw/inc/swtable.hxx index bf492ddb75b1..c53f846c9adc 100644 --- a/sw/inc/swtable.hxx +++ b/sw/inc/swtable.hxx @@ -344,23 +344,23 @@ public: /// SwTableLine is one table row in the document model. class SW_DLLPUBLIC SwTableLine: public SwClient // Client of FrameFormat. { - SwTableBoxes aBoxes; - SwTableBox *pUpper; + SwTableBoxes m_aBoxes; + SwTableBox *m_pUpper; public: TYPEINFO_OVERRIDE(); - SwTableLine() : pUpper(0) {} + SwTableLine() : m_pUpper(0) {} SwTableLine( SwTableLineFormat*, sal_uInt16 nBoxes, SwTableBox *pUp ); virtual ~SwTableLine(); - SwTableBoxes &GetTabBoxes() { return aBoxes; } - const SwTableBoxes &GetTabBoxes() const { return aBoxes; } + SwTableBoxes &GetTabBoxes() { return m_aBoxes; } + const SwTableBoxes &GetTabBoxes() const { return m_aBoxes; } - SwTableBox *GetUpper() { return pUpper; } - const SwTableBox *GetUpper() const { return pUpper; } - void SetUpper( SwTableBox *pNew ) { pUpper = pNew; } + SwTableBox *GetUpper() { return m_pUpper; } + const SwTableBox *GetUpper() const { return m_pUpper; } + void SetUpper( SwTableBox *pNew ) { m_pUpper = pNew; } SwFrameFormat* GetFrameFormat() { return static_cast<SwFrameFormat*>(GetRegisteredIn()); } SwFrameFormat* GetFrameFormat() const { return const_cast<SwFrameFormat*>(static_cast<const SwFrameFormat*>(GetRegisteredIn())); } |