summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-18 11:07:40 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-19 00:06:33 +0200
commit2fbd7d240efe0737706950195b58fa6a101b9020 (patch)
treef2cce81e6c24e3bd1e5cecce711dcbba71d28e55 /basic
parentfa5c79b4c62e1e1c53b36f79947d2cba7e3db4fa (diff)
cid#1448438 Uncaught exception
Change-Id: I444e8c8833db6bb0af9cfc7c3b18b45178faa663 Reviewed-on: https://gerrit.libreoffice.org/75892 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/runtime.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index 3baba08b2f8a..74f849ad576f 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -344,7 +344,7 @@ SbiInstance::~SbiInstance()
}
catch( const Exception& )
{
- css::uno::Any ex( cppu::getCaughtException() );
+ css::uno::Any ex(DbgGetCaughtException());
SAL_WARN("basic", "SbiInstance::~SbiInstance: caught an exception while disposing the components! " << exceptionToString(ex) );
}
}