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

Caolán McNamara caolanm at redhat.com
Tue Nov 28 14:15:24 UTC 2017


 sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx     |    2 +-
 sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 0e0a5a06185109f1ed76f6e97bb08bb7c6b953f6
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Tue Nov 28 09:28:15 2017 +0000

    coverity#1421124 Uncaught exception
    
    Change-Id: I23a9174bda0bddc258c9591bddc5108f62d64c2e
    Reviewed-on: https://gerrit.libreoffice.org/45394
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx b/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx
index 323dbe948fe9..acd93d26aec1 100644
--- a/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx
+++ b/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx
@@ -237,7 +237,7 @@ InsertionIndicatorHandler::ForceShowContext::ForceShowContext (
     mpHandler->ForceShow();
 }
 
-InsertionIndicatorHandler::ForceShowContext::~ForceShowContext()
+InsertionIndicatorHandler::ForceShowContext::~ForceShowContext() COVERITY_NOEXCEPT_FALSE
 {
     mpHandler->ForceEnd();
 }
diff --git a/sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx b/sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx
index ef1076e99a1d..62900ae3189f 100644
--- a/sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx
+++ b/sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx
@@ -63,7 +63,7 @@ public:
     {
     public:
         ForceShowContext (const std::shared_ptr<InsertionIndicatorHandler>& rpHandler);
-        ~ForceShowContext();
+        ~ForceShowContext() COVERITY_NOEXCEPT_FALSE;
     private:
         const std::shared_ptr<InsertionIndicatorHandler> mpHandler;
     };


More information about the Libreoffice-commits mailing list