[Libreoffice-commits] core.git: sw/inc

Miklos Vajna vmiklos at collabora.co.uk
Mon Jan 16 11:45:23 UTC 2017


 sw/inc/tblsel.hxx |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 6d2693853e6c542bc9aec65be283619817929150
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Mon Jan 16 09:28:57 2017 +0100

    sw: prefix members of FndLine_
    
    Change-Id: Ibf163a4f77d769d332e7bddac5186e39fc80a161
    Reviewed-on: https://gerrit.libreoffice.org/33156
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
    Tested-by: Jenkins <ci at libreoffice.org>

diff --git a/sw/inc/tblsel.hxx b/sw/inc/tblsel.hxx
index 7f0d4c9..c06770e 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


More information about the Libreoffice-commits mailing list