summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-10-26 08:54:11 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-10-26 08:55:49 +0100
commit607544c14e1a8c7906c494273cd145cd6ddfdd73 (patch)
tree0288a7d98eef879ff639619f9e5f8caf94d06c7e /sw/inc
parent683196bec3d1514fdae9dc4d115be770d32fdaf7 (diff)
sw: prefix remaining members of SwTextFormatColl
Change-Id: Ife3a2c9dae17d3c8f2972fb7d65682b6d6778ed1
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/fmtcol.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/fmtcol.hxx b/sw/inc/fmtcol.hxx
index 7315e51720ab..618e3baf854d 100644
--- a/sw/inc/fmtcol.hxx
+++ b/sw/inc/fmtcol.hxx
@@ -64,7 +64,7 @@ protected:
bool mbAssignedToOutlineStyle;
- SwTextFormatColl *pNextTextFormatColl;
+ SwTextFormatColl *mpNextTextFormatColl;
SwTextFormatColl( SwAttrPool& rPool, const sal_Char* pFormatCollName,
SwTextFormatColl* pDerFrom = 0,
@@ -73,7 +73,7 @@ protected:
, mbStayAssignedToListLevelOfOutlineStyle(false)
, mbAssignedToOutlineStyle(false)
{
- pNextTextFormatColl = this;
+ mpNextTextFormatColl = this;
}
SwTextFormatColl( SwAttrPool& rPool, const OUString &rFormatCollName,
@@ -83,7 +83,7 @@ protected:
, mbStayAssignedToListLevelOfOutlineStyle(false)
, mbAssignedToOutlineStyle(false)
{
- pNextTextFormatColl = this;
+ mpNextTextFormatColl = this;
}
/// To get UL- / LR- / FontHeight-changes.
@@ -94,7 +94,7 @@ public:
TYPEINFO_OVERRIDE(); ///< Already in base class Client.
inline void SetNextTextFormatColl(SwTextFormatColl& rNext);
- SwTextFormatColl& GetNextTextFormatColl() const { return *pNextTextFormatColl; }
+ SwTextFormatColl& GetNextTextFormatColl() const { return *mpNextTextFormatColl; }
bool IsAtDocNodeSet() const;
@@ -248,7 +248,7 @@ public:
/// Inline implementations.
inline void SwTextFormatColl::SetNextTextFormatColl( SwTextFormatColl& rNext )
{
- pNextTextFormatColl = &rNext;
+ mpNextTextFormatColl = &rNext;
}
#endif