summaryrefslogtreecommitdiffstats
path: root/sd/source/helper/simplereferencecomponent.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/helper/simplereferencecomponent.cxx')
-rw-r--r--sd/source/helper/simplereferencecomponent.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sd/source/helper/simplereferencecomponent.cxx b/sd/source/helper/simplereferencecomponent.cxx
index e47341b85ba3..23a1fe108c4a 100644
--- a/sd/source/helper/simplereferencecomponent.cxx
+++ b/sd/source/helper/simplereferencecomponent.cxx
@@ -22,6 +22,7 @@
#include <com/sun/star/uno/RuntimeException.hpp>
#include <osl/diagnose.h>
#include <sal/log.hxx>
+#include <tools/diagnose_ex.h>
using com::sun::star::uno::RuntimeException;
using sd::SimpleReferenceComponent;
@@ -51,9 +52,10 @@ void SimpleReferenceComponent::release()
{
Dispose();
}
- catch (RuntimeException & exc ) // don't break throw ()
+ catch (RuntimeException const &) // don't break throw ()
{
- SAL_WARN( "sd", exc );
+ css::uno::Any ex( cppu::getCaughtException() );
+ SAL_WARN( "sd", exceptionToString(ex) );
}
}