diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-11-15 09:10:36 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-11-15 17:17:42 +0100 |
commit | acb3638afd79472851bdf111192a2c023f44bf67 (patch) | |
tree | 1eefa0dbdfba9c83f1555d0eaa8837f7024bb246 /sw/inc | |
parent | 8cfc86c652bc02eca2733498d4459bd24de2158b (diff) |
replace an ugly coverity warning suppression
Change-Id: I73921e43e7e955793493e2accab4e3799cfd121c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125221
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/HandleAnchorNodeChg.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sw/inc/HandleAnchorNodeChg.hxx b/sw/inc/HandleAnchorNodeChg.hxx index ae46c7e2cc89..446f9ac710a6 100644 --- a/sw/inc/HandleAnchorNodeChg.hxx +++ b/sw/inc/HandleAnchorNodeChg.hxx @@ -53,7 +53,7 @@ public: SwFlyFrame const* _pKeepThisFlyFrame = nullptr); /** calls <SwFlyFrameFormat::MakeFrames>, if re-creation of fly frames is necessary. */ - ~SwHandleAnchorNodeChg() COVERITY_NOEXCEPT_FALSE; + ~SwHandleAnchorNodeChg(); private: // fly frame format, which is tracked for an anchor node change. @@ -67,6 +67,8 @@ private: SwWrtShell* mpWrtShell; + void ImplDestroy(); + SwHandleAnchorNodeChg(const SwHandleAnchorNodeChg&) = delete; void operator=(const SwHandleAnchorNodeChg) = delete; }; |