From fe5623e35d81d7343af48521857610e60bb891fa Mon Sep 17 00:00:00 2001 From: Bjoern Michaelsen Date: Tue, 3 Nov 2020 00:27:29 +0100 Subject: SwModify: remove the LockClientList madness sw::WriterListener has better debug messages anyway. Change-Id: I24ae3fabe885002d250ad30e596973c26316abcc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105232 Tested-by: Jenkins Reviewed-by: Bjoern Michaelsen --- sw/inc/calbck.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sw/inc/calbck.hxx') diff --git a/sw/inc/calbck.hxx b/sw/inc/calbck.hxx index 19c7c0b1125a..ed719037fa9d 100644 --- a/sw/inc/calbck.hxx +++ b/sw/inc/calbck.hxx @@ -177,7 +177,6 @@ class SW_DLLPUBLIC SwModify: public SwClient template 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 m_bLockClientList : 1; // may be set when this instance notifies its clients bool m_bInCache : 1; bool m_bInSwFntCache : 1; @@ -190,7 +189,7 @@ class SW_DLLPUBLIC SwModify: public SwClient SwModify &operator =(const SwModify&) = delete; public: SwModify() - : SwClient(), m_pWriterListeners(nullptr), m_bModifyLocked(false), m_bLockClientList(false), m_bInCache(false), m_bInSwFntCache(false) + : SwClient(), m_pWriterListeners(nullptr), m_bModifyLocked(false), m_bInCache(false), m_bInSwFntCache(false) {} // broadcasting: send notifications to all clients -- cgit