diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-09-21 09:36:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-09-21 13:00:13 +0200 |
commit | 8d96717154c0c69e46032c10d7e7ddef297a4668 (patch) | |
tree | 2ca2736bb589e51682664948b604008444d93754 /svtools | |
parent | 4a5ed266e64b892dde8a3e36be042e7e9d307eae (diff) |
coverity#1401334 Uncaught exception
Change-Id: I2a74e0bcba46b730067b5baca5e934f95ba265ce
Reviewed-on: https://gerrit.libreoffice.org/60854
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/popupwindowcontroller.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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(); |