summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-10-07 09:44:49 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-10-07 15:47:34 +0200
commit1506c5e1f7228b23b8cee461701ab9dc8eccde27 (patch)
treec2995cf02dec1f0668b54a6819ab4d05b96099bc
parentb017c73efdaff0d4921ff17992e499f25bfb5f33 (diff)
cid#1453997 silence Uncaught exception
Change-Id: I8158bf997de6e34da1f2ab6a2f9b5e3c61267520 Reviewed-on: https://gerrit.libreoffice.org/80354 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--include/vcl/builderpage.hxx2
-rw-r--r--vcl/source/app/weldutils.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/builderpage.hxx b/include/vcl/builderpage.hxx
index dc846ad1a53c..6f721dde233a 100644
--- a/include/vcl/builderpage.hxx
+++ b/include/vcl/builderpage.hxx
@@ -17,7 +17,7 @@ class VCL_DLLPUBLIC BuilderPage
public:
BuilderPage(weld::Widget* pParent, weld::DialogController* pController,
const OUString& rUIXMLDescription, const OString& rID);
- virtual ~BuilderPage();
+ virtual ~BuilderPage() COVERITY_NOEXCEPT_FALSE;
/* The title of the page, in an Assistant the dialog may append this page title to the
dialog title.
diff --git a/vcl/source/app/weldutils.cxx b/vcl/source/app/weldutils.cxx
index 11fc208a7836..9db82c27dda0 100644
--- a/vcl/source/app/weldutils.cxx
+++ b/vcl/source/app/weldutils.cxx
@@ -22,7 +22,7 @@ void BuilderPage::Activate() {}
void BuilderPage::Deactivate() {}
-BuilderPage::~BuilderPage() {}
+BuilderPage::~BuilderPage() COVERITY_NOEXCEPT_FALSE {}
namespace weld
{