diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-11 11:23:05 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-11 21:31:48 +0200 |
commit | a75cc6348ce578f619c7429f5157fae53eb08e01 (patch) | |
tree | f848102cf718a36e40833d07762f1af53d8399ab /sw/inc | |
parent | 7e1503b4231ef8084478b72b0992c98198ec8070 (diff) |
loplugin:unusedfields
Change-Id: I42a55562747e6097c1193e285da67235f5364bea
Reviewed-on: https://gerrit.libreoffice.org/55610
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/swbaslnk.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/inc/swbaslnk.hxx b/sw/inc/swbaslnk.hxx index 4f922e698f95..d42d6f30877e 100644 --- a/sw/inc/swbaslnk.hxx +++ b/sw/inc/swbaslnk.hxx @@ -27,7 +27,6 @@ class SwContentNode; class SwBaseLink : public ::sfx2::SvBaseLink { SwContentNode* m_pContentNode; - bool m_bInSwapIn : 1; ///< Prevent recursion and notifications during SwapIn bool m_bNoDataFlag : 1; bool m_bIgnoreDataChanged : 1; @@ -35,7 +34,7 @@ public: SwBaseLink( SfxLinkUpdateMode nMode, SotClipboardFormatId nFormat, SwContentNode* pNode = nullptr ) : ::sfx2::SvBaseLink( nMode, nFormat ), m_pContentNode( pNode ), - m_bInSwapIn( false ), m_bNoDataFlag( false ), m_bIgnoreDataChanged( false ) + m_bNoDataFlag( false ), m_bIgnoreDataChanged( false ) {} virtual ~SwBaseLink() override; |