diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 10:22:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 16:18:55 +0200 |
commit | 2b15319349f90861c55cc3eb34fe5653b3d9a29b (patch) | |
tree | 961e6d0a22ed86216af154679855c013087bb3a6 /sd | |
parent | 56f5a752f2e9e35887ec57de9e55a83d46a994c2 (diff) |
cid#1448325 Uncaught exception
Change-Id: I5bb61909d5d252de7465a29a3c8e49b7b1997ba3
Reviewed-on: https://gerrit.libreoffice.org/75847
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/core/stlsheet.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sd/source/core/stlsheet.cxx b/sd/source/core/stlsheet.cxx index 3ad8f1aa788d..d49806b8b058 100644 --- a/sd/source/core/stlsheet.cxx +++ b/sd/source/core/stlsheet.cxx @@ -707,8 +707,9 @@ void SAL_CALL SdStyleSheet::release( ) throw () dispose(); } catch (RuntimeException const&) - { // don't break throw () - css::uno::Any ex( cppu::getCaughtException() ); + { + // don't break throw () + css::uno::Any ex(DbgGetCaughtException()); SAL_WARN( "sd", exceptionToString(ex) ); } OSL_ASSERT( mrBHelper.bDisposed ); |