[Libreoffice-commits] core.git: include/vcl vcl/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Mon Oct 7 13:48:28 UTC 2019


 include/vcl/builderpage.hxx  |    2 +-
 vcl/source/app/weldutils.cxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 1506c5e1f7228b23b8cee461701ab9dc8eccde27
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Mon Oct 7 09:44:49 2019 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Mon Oct 7 15:47:34 2019 +0200

    cid#1453997 silence Uncaught exception
    
    Change-Id: I8158bf997de6e34da1f2ab6a2f9b5e3c61267520
    Reviewed-on: https://gerrit.libreoffice.org/80354
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

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
 {


More information about the Libreoffice-commits mailing list