[Libreoffice-commits] core.git: sd/source

Caolán McNamara caolanm at redhat.com
Sun Nov 26 21:26:57 UTC 2017


 sd/source/ui/inc/ViewShellImplementation.hxx  |    2 +-
 sd/source/ui/view/ViewShellImplementation.cxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d1403852e5d31a3d22b644137a03f5188a103b20
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Sun Nov 26 21:26:10 2017 +0000

    coverity#1421087 Uncaught exception
    
    Change-Id: Ib00d20580178c80f653e26d5d23f81f4e81d2210

diff --git a/sd/source/ui/inc/ViewShellImplementation.hxx b/sd/source/ui/inc/ViewShellImplementation.hxx
index 65222ff5fe5f..294d648ad0d4 100644
--- a/sd/source/ui/inc/ViewShellImplementation.hxx
+++ b/sd/source/ui/inc/ViewShellImplementation.hxx
@@ -96,7 +96,7 @@ public:
     std::weak_ptr<ToolBarManagerLock> mpUpdateLockForMouse;
 
     Implementation (ViewShell& rViewShell);
-    ~Implementation();
+    ~Implementation() COVERITY_NOEXCEPT_FALSE;
 
     /** Process the SID_MODIFY slot.
     */
diff --git a/sd/source/ui/view/ViewShellImplementation.cxx b/sd/source/ui/view/ViewShellImplementation.cxx
index f625b9a7a1af..9ad12b4639b3 100644
--- a/sd/source/ui/view/ViewShellImplementation.cxx
+++ b/sd/source/ui/view/ViewShellImplementation.cxx
@@ -70,7 +70,7 @@ ViewShell::Implementation::Implementation (ViewShell& rViewShell)
 {
 }
 
-ViewShell::Implementation::~Implementation()
+ViewShell::Implementation::~Implementation() COVERITY_NOEXCEPT_FALSE
 {
     if ( ! mpUpdateLockForMouse.expired())
     {


More information about the Libreoffice-commits mailing list