diff options
-rw-r--r-- | sd/source/ui/unoidl/DrawController.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sd/source/ui/unoidl/DrawController.cxx b/sd/source/ui/unoidl/DrawController.cxx index ffa8dff0e153..78fcbe04db87 100644 --- a/sd/source/ui/unoidl/DrawController.cxx +++ b/sd/source/ui/unoidl/DrawController.cxx @@ -442,13 +442,9 @@ void DrawController::FireSwitchCurrentPage (SdPage* pNewCurrentPage) throw() mpCurrentPage.reset(pNewCurrentPage); } - catch (const uno::Exception&) + catch (const uno::Exception& e) { - OSL_FAIL( - OString("sd::SdUnoDrawView::FireSwitchCurrentPage(), exception caught: " + - OUStringToOString( - comphelper::anyToString( cppu::getCaughtException() ), - RTL_TEXTENCODING_UTF8 )).getStr() ); + SAL_WARN("sd", "sd::SdUnoDrawView::FireSwitchCurrentPage(), exception caught: " << e.Message); } } } |