diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-01-16 09:28:57 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-01-16 11:45:01 +0000 |
commit | 6d2693853e6c542bc9aec65be283619817929150 (patch) | |
tree | e1fd32ee0a79bb074ccc1833460fe3ff642f8578 /sw | |
parent | 99e09b18b76c22c654a2c40e8176807ceff77c5f (diff) |
sw: prefix members of FndLine_
Change-Id: Ibf163a4f77d769d332e7bddac5186e39fc80a161
Reviewed-on: https://gerrit.libreoffice.org/33156
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/tblsel.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/inc/tblsel.hxx b/sw/inc/tblsel.hxx index 7f0d4c94d2de..c06770e0be9d 100644 --- a/sw/inc/tblsel.hxx +++ b/sw/inc/tblsel.hxx @@ -192,23 +192,23 @@ public: class FndLine_ { - SwTableLine* pLine; + SwTableLine* m_pLine; FndBoxes_t m_Boxes; - FndBox_* pUpper; + FndBox_* m_pUpper; FndLine_(FndLine_ const&) = delete; FndLine_& operator=(FndLine_ const&) = delete; public: - FndLine_(SwTableLine* pL, FndBox_* pFB) : pLine(pL), pUpper(pFB) {} + FndLine_(SwTableLine* pL, FndBox_* pFB) : m_pLine(pL), m_pUpper(pFB) {} const FndBoxes_t& GetBoxes() const { return m_Boxes; } FndBoxes_t& GetBoxes() { return m_Boxes; } - const SwTableLine* GetLine() const { return pLine; } - SwTableLine* GetLine() { return pLine; } - const FndBox_* GetUpper() const { return pUpper; } - FndBox_* GetUpper() { return pUpper; } + const SwTableLine* GetLine() const { return m_pLine; } + SwTableLine* GetLine() { return m_pLine; } + const FndBox_* GetUpper() const { return m_pUpper; } + FndBox_* GetUpper() { return m_pUpper; } - void SetUpper( FndBox_* pUp ) { pUpper = pUp; } + void SetUpper( FndBox_* pUp ) { m_pUpper = pUp; } }; struct FndPara |