diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-04-17 10:25:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-04-17 13:45:12 +0100 |
commit | 2d1690da6d4d97751e19b2e46a46d971bb060c14 (patch) | |
tree | bfd5bb3bd0ca8b48d1dd568691330d59bbfd193e /sw | |
parent | 59dbaff0d98c747f1792b17931d8363daf556238 (diff) |
coverity#1434889 Uncaught exception
and
coverity#1401334 Uncaught exception
Change-Id: Ib2fadd83068cc94c972f6312719081d5ac75d8ce
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/misc/insfnote.cxx | 2 | ||||
-rw-r--r-- | sw/source/uibase/inc/insfnote.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/misc/insfnote.cxx b/sw/source/ui/misc/insfnote.cxx index 19dc1c01c0c8..8131efc698ec 100644 --- a/sw/source/ui/misc/insfnote.cxx +++ b/sw/source/ui/misc/insfnote.cxx @@ -180,7 +180,7 @@ SwInsFootNoteDlg::SwInsFootNoteDlg(weld::Window *pParent, SwWrtShell &rShell, bo } } -SwInsFootNoteDlg::~SwInsFootNoteDlg() +SwInsFootNoteDlg::~SwInsFootNoteDlg() COVERITY_NOEXCEPT_FALSE { SwViewShell::SetCareDialog(nullptr); diff --git a/sw/source/uibase/inc/insfnote.hxx b/sw/source/uibase/inc/insfnote.hxx index 49ea5563fede..c86b53f00146 100644 --- a/sw/source/uibase/inc/insfnote.hxx +++ b/sw/source/uibase/inc/insfnote.hxx @@ -61,7 +61,7 @@ class SwInsFootNoteDlg: public weld::GenericDialogController public: SwInsFootNoteDlg(weld::Window * pParent, SwWrtShell &rSh, bool bEd); - virtual ~SwInsFootNoteDlg() override; + virtual ~SwInsFootNoteDlg() COVERITY_NOEXCEPT_FALSE override; const OUString& GetFontName() { return m_aFontName; } bool IsEndNote() const { return m_xEndNoteBtn->get_active(); } |