diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-10-30 08:33:03 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-10-30 08:33:03 +0100 |
commit | 1d46941fd140940928bd4376d6cd9b8e928ac261 (patch) | |
tree | 7a5facf9b0870bc1e6d774ca935828f0649580aa /sw/inc | |
parent | 150fdfc77274909dd9281b97c1e166cac838c60e (diff) |
sw: prefix members of SwModify
Change-Id: Ia8d44e5c8a987aa1c0cc38e885eadd595b70a898
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/calbck.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/calbck.hxx b/sw/inc/calbck.hxx index f6383d0b8e70..ecf400b9de49 100644 --- a/sw/inc/calbck.hxx +++ b/sw/inc/calbck.hxx @@ -148,7 +148,7 @@ class SW_DLLPUBLIC SwModify: public SwClient template<typename E, typename S> friend class SwIterator; sw::WriterListener* m_pWriterListeners; // the start of the linked list of clients bool m_bModifyLocked : 1; // don't broadcast changes now - bool bLockClientList : 1; // may be set when this instance notifies its clients + bool m_bLockClientList : 1; // may be set when this instance notifies its clients bool m_bInDocDTOR : 1; // workaround for problems when a lot of objects are destroyed bool m_bInCache : 1; bool m_bInSwFntCache : 1; @@ -162,10 +162,10 @@ class SW_DLLPUBLIC SwModify: public SwClient SwModify &operator =(const SwModify&) = delete; public: SwModify() - : SwClient(nullptr), m_pWriterListeners(nullptr), m_bModifyLocked(false), bLockClientList(false), m_bInDocDTOR(false), m_bInCache(false), m_bInSwFntCache(false) + : SwClient(nullptr), m_pWriterListeners(nullptr), m_bModifyLocked(false), m_bLockClientList(false), m_bInDocDTOR(false), m_bInCache(false), m_bInSwFntCache(false) {} explicit SwModify( SwModify* pToRegisterIn ) - : SwClient(pToRegisterIn), m_pWriterListeners(nullptr), m_bModifyLocked(false), bLockClientList(false), m_bInDocDTOR(false), m_bInCache(false), m_bInSwFntCache(false) + : SwClient(pToRegisterIn), m_pWriterListeners(nullptr), m_bModifyLocked(false), m_bLockClientList(false), m_bInDocDTOR(false), m_bInCache(false), m_bInSwFntCache(false) {} // broadcasting: send notifications to all clients |