summaryrefslogtreecommitdiff
path: root/sw/source/core/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-02-27 09:14:41 +0100
committerAndras Timar <andras.timar@collabora.com>2017-02-28 11:20:03 +0100
commit41ed5f82271e61b1d08e3adf42f0995ac4516600 (patch)
tree6432c04e40e353b547001e8dc3f0bace94cca3c9 /sw/source/core/inc
parent431520fec6525dbc40d4961f3a13ccc7839613b1 (diff)
sw: prefix members of SwLayNotify
Change-Id: I40df0def8da88ba2c5719508a9df390e1d391fac (cherry picked from commit 74f6850a8ecd839ef76b6eef704fff408d3e639e)
Diffstat (limited to 'sw/source/core/inc')
-rw-r--r--sw/source/core/inc/frmtool.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/inc/frmtool.hxx b/sw/source/core/inc/frmtool.hxx
index 4c8de7269457..e01595783154 100644
--- a/sw/source/core/inc/frmtool.hxx
+++ b/sw/source/core/inc/frmtool.hxx
@@ -188,14 +188,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