diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-03-13 09:16:13 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-03-13 12:10:19 +0100 |
commit | 9d778261d4dd6e50e6c5f7583c4dfa5f8d5b5a0b (patch) | |
tree | e26dfbeaea34c2784b8b8151b9f2a366c26ef6c7 /sw/inc | |
parent | 93985db3410f3ce685e6da6ef77457bb72d56201 (diff) |
sw: prefix members of SwTableBoxFormula
Change-Id: If96fbf097e2314303e60fd4f10ae314d12f2c468
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/cellatr.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/cellatr.hxx b/sw/inc/cellatr.hxx index af49f782070a..68b5c18be7cd 100644 --- a/sw/inc/cellatr.hxx +++ b/sw/inc/cellatr.hxx @@ -49,7 +49,7 @@ public: class SwTableBoxFormula : public SfxPoolItem, public SwTableFormula { - SwModify* pDefinedIn; // Modify object where the formula is located + SwModify* m_pDefinedIn; // Modify object where the formula is located // can only be TableBoxFormat public: @@ -59,9 +59,9 @@ public: virtual bool operator==( const SfxPoolItem& ) const override; virtual SfxPoolItem* Clone( SfxItemPool* pPool = nullptr ) const override; - const SwModify* GetDefinedIn() const { return pDefinedIn; } + const SwModify* GetDefinedIn() const { return m_pDefinedIn; } void ChgDefinedIn( const SwModify* pNew ) - { pDefinedIn = const_cast<SwModify*>(pNew); } + { m_pDefinedIn = const_cast<SwModify*>(pNew); } // BoxAttribut -> BoxStartNode virtual const SwNode* GetNodeOfFormula() const override; |