diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 10:13:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 16:19:43 +0200 |
commit | 36d27bb2aec2c2375342d1652501b8874e750a2f (patch) | |
tree | f0f9bd34be81b99673c5f13dfecfa96607c22d14 | |
parent | 6944f42bbbf555a6aa23fe9f37439a803762d4ce (diff) |
cid#1311945 Uncaught exception
Change-Id: I1f3c2d3e644c4cbb4e38740c05a623864219313e
Reviewed-on: https://gerrit.libreoffice.org/75843
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sd/source/ui/unoidl/DrawController.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/unoidl/DrawController.cxx b/sd/source/ui/unoidl/DrawController.cxx index 44ae57e10545..0024a1a568b3 100644 --- a/sd/source/ui/unoidl/DrawController.cxx +++ b/sd/source/ui/unoidl/DrawController.cxx @@ -429,7 +429,7 @@ void DrawController::FireSwitchCurrentPage (SdPage* pNewCurrentPage) throw() } catch (const uno::Exception&) { - css::uno::Any ex( cppu::getCaughtException() ); + css::uno::Any ex(DbgGetCaughtException()); SAL_WARN("sd", "sd::SdUnoDrawView::FireSwitchCurrentPage(), exception caught: " << exceptionToString(ex)); } } |