From a75cc6348ce578f619c7429f5157fae53eb08e01 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 11 Jun 2018 11:23:05 +0200 Subject: loplugin:unusedfields Change-Id: I42a55562747e6097c1193e285da67235f5364bea Reviewed-on: https://gerrit.libreoffice.org/55610 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sw/inc/swbaslnk.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sw/inc') 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; -- cgit