diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-14 10:59:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-14 13:32:36 +0200 |
commit | 27d9aa3eff7e26c21218bece0310705a0453553f (patch) | |
tree | 780e6518da2e49377a1f7b7d68cbdbc8f604f773 /desktop/source | |
parent | 1668111a2969201d17c75d0e8c7a8e47e0c7d01c (diff) |
dont catch&abort Desktop::OpenClients_Impl
rather just let the debugger or crashpad handle it
Change-Id: I44e0dd06f2c84a7bf0099093a53032d759c18dea
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100729
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/app/app.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index 9b9fa3896de5..57f88713cba4 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -1150,7 +1150,7 @@ void Desktop::Exception(ExceptionCategory nCategory) { case ExceptionCategory::ResourceNotLoaded: { - Application::Abort( OUString() ); + Application::Abort( "OS threw signal OSL_SIGNAL_USER_RESOURCEFAILURE" ); break; } @@ -1841,7 +1841,6 @@ class ExitTimer : public Timer IMPL_LINK_NOARG(Desktop, OpenClients_Impl, void*, void) { - try { // #i114963# // Enable IPC thread before OpenClients // @@ -1869,9 +1868,6 @@ IMPL_LINK_NOARG(Desktop, OpenClients_Impl, void*, void) const char *pExitPostStartup = getenv ("OOO_EXIT_POST_STARTUP"); if (pExitPostStartup && *pExitPostStartup) new ExitTimer(); - } catch (const css::uno::Exception &e) { - Application::Abort( "UNO exception during client open: " + e.Message ); - } } void Desktop::OpenClients() |