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

Miklos Vajna vmiklos at collabora.co.uk
Mon Feb 27 11:27:25 UTC 2017


 sw/source/core/inc/frmtool.hxx    |    6 +++---
 sw/source/core/layout/frmtool.cxx |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 74f6850a8ecd839ef76b6eef704fff408d3e639e
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Mon Feb 27 09:14:41 2017 +0100

    sw: prefix members of SwLayNotify
    
    Change-Id: I40df0def8da88ba2c5719508a9df390e1d391fac

diff --git a/sw/source/core/inc/frmtool.hxx b/sw/source/core/inc/frmtool.hxx
index a94dc26..b6b56e0 100644
--- a/sw/source/core/inc/frmtool.hxx
+++ b/sw/source/core/inc/frmtool.hxx
@@ -190,14 +190,14 @@ public:
 
 class SwLayNotify : public SwFrameNotify
 {
-    bool bLowersComplete;
+    bool m_bLowersComplete;
 
 public:
     SwLayNotify( SwLayoutFrame *pLayFrame );
     ~SwLayNotify();
 
-    void SetLowersComplete( bool b ) { bLowersComplete = b; }
-    bool IsLowersComplete()          { return bLowersComplete; }
+    void SetLowersComplete( bool b ) { m_bLowersComplete = b; }
+    bool IsLowersComplete()          { return m_bLowersComplete; }
 };
 
 class SwFlyNotify : public SwLayNotify
diff --git a/sw/source/core/layout/frmtool.cxx b/sw/source/core/layout/frmtool.cxx
index b2c88d2..e9e6535 100644
--- a/sw/source/core/layout/frmtool.cxx
+++ b/sw/source/core/layout/frmtool.cxx
@@ -410,7 +410,7 @@ SwFrameNotify::~SwFrameNotify()
 
 SwLayNotify::SwLayNotify( SwLayoutFrame *pLayFrame ) :
     SwFrameNotify( pLayFrame ),
-    bLowersComplete( false )
+    m_bLowersComplete( false )
 {
 }
 


More information about the Libreoffice-commits mailing list