From 8d96717154c0c69e46032c10d7e7ddef297a4668 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 21 Sep 2018 09:36:59 +0100 Subject: coverity#1401334 Uncaught exception MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I2a74e0bcba46b730067b5baca5e934f95ba265ce Reviewed-on: https://gerrit.libreoffice.org/60854 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- svtools/source/uno/popupwindowcontroller.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svtools') diff --git a/svtools/source/uno/popupwindowcontroller.cxx b/svtools/source/uno/popupwindowcontroller.cxx index 264afc41ce75..9d5b5c98bbdc 100644 --- a/svtools/source/uno/popupwindowcontroller.cxx +++ b/svtools/source/uno/popupwindowcontroller.cxx @@ -37,7 +37,7 @@ class PopupWindowControllerImpl { public: PopupWindowControllerImpl(); - ~PopupWindowControllerImpl(); + ~PopupWindowControllerImpl() COVERITY_NOEXCEPT_FALSE; void SetPopupWindow( vcl::Window* pPopupWindow, ToolBox* pToolBox ); void SetFloatingWindow(); @@ -52,7 +52,7 @@ PopupWindowControllerImpl::PopupWindowControllerImpl() { } -PopupWindowControllerImpl::~PopupWindowControllerImpl() +PopupWindowControllerImpl::~PopupWindowControllerImpl() COVERITY_NOEXCEPT_FALSE { SetPopupWindow(nullptr,nullptr); SetFloatingWindow(); -- cgit