Kaydet (Commit) 607544c1 authored tarafından Miklos Vajna's avatar Miklos Vajna

sw: prefix remaining members of SwTextFormatColl

Change-Id: Ife3a2c9dae17d3c8f2972fb7d65682b6d6778ed1
üst 683196be
...@@ -64,7 +64,7 @@ protected: ...@@ -64,7 +64,7 @@ protected:
bool mbAssignedToOutlineStyle; bool mbAssignedToOutlineStyle;
SwTextFormatColl *pNextTextFormatColl; SwTextFormatColl *mpNextTextFormatColl;
SwTextFormatColl( SwAttrPool& rPool, const sal_Char* pFormatCollName, SwTextFormatColl( SwAttrPool& rPool, const sal_Char* pFormatCollName,
SwTextFormatColl* pDerFrom = 0, SwTextFormatColl* pDerFrom = 0,
...@@ -73,7 +73,7 @@ protected: ...@@ -73,7 +73,7 @@ protected:
, mbStayAssignedToListLevelOfOutlineStyle(false) , mbStayAssignedToListLevelOfOutlineStyle(false)
, mbAssignedToOutlineStyle(false) , mbAssignedToOutlineStyle(false)
{ {
pNextTextFormatColl = this; mpNextTextFormatColl = this;
} }
SwTextFormatColl( SwAttrPool& rPool, const OUString &rFormatCollName, SwTextFormatColl( SwAttrPool& rPool, const OUString &rFormatCollName,
...@@ -83,7 +83,7 @@ protected: ...@@ -83,7 +83,7 @@ protected:
, mbStayAssignedToListLevelOfOutlineStyle(false) , mbStayAssignedToListLevelOfOutlineStyle(false)
, mbAssignedToOutlineStyle(false) , mbAssignedToOutlineStyle(false)
{ {
pNextTextFormatColl = this; mpNextTextFormatColl = this;
} }
/// To get UL- / LR- / FontHeight-changes. /// To get UL- / LR- / FontHeight-changes.
...@@ -94,7 +94,7 @@ public: ...@@ -94,7 +94,7 @@ public:
TYPEINFO_OVERRIDE(); ///< Already in base class Client. TYPEINFO_OVERRIDE(); ///< Already in base class Client.
inline void SetNextTextFormatColl(SwTextFormatColl& rNext); inline void SetNextTextFormatColl(SwTextFormatColl& rNext);
SwTextFormatColl& GetNextTextFormatColl() const { return *pNextTextFormatColl; } SwTextFormatColl& GetNextTextFormatColl() const { return *mpNextTextFormatColl; }
bool IsAtDocNodeSet() const; bool IsAtDocNodeSet() const;
...@@ -248,7 +248,7 @@ public: ...@@ -248,7 +248,7 @@ public:
/// Inline implementations. /// Inline implementations.
inline void SwTextFormatColl::SetNextTextFormatColl( SwTextFormatColl& rNext ) inline void SwTextFormatColl::SetNextTextFormatColl( SwTextFormatColl& rNext )
{ {
pNextTextFormatColl = &rNext; mpNextTextFormatColl = &rNext;
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment