summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Behrens <Thorsten.Behrens@CIB.de>2020-04-21 18:19:35 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2020-04-21 18:26:17 +0200
commitdaa45d73b67632808fb5fbbafa0d6f187f53c586 (patch)
treedf6ae93a0a6b54e90d12e0a1dc51af183e034db3
parent947356b09d84b537ec72bf77b5421f60c52d642f (diff)
Revert "Disable crash reporter UI"
This reverts commit 914f171f2470aea4453fee75ce1d9da5615bbb0b.
-rw-r--r--desktop/source/app/app.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index b70295f56af6..c9dbcca1b290 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -889,8 +889,7 @@ namespace {
#if HAVE_FEATURE_BREAKPAD
void handleCrashReport()
{
- // Don't show the dialog since we don't offer upload - only want the dumps
- /*static const char SERVICENAME_CRASHREPORT[] = "com.sun.star.comp.svx.CrashReportUI";
+ static const char SERVICENAME_CRASHREPORT[] = "com.sun.star.comp.svx.CrashReportUI";
css::uno::Reference< css::uno::XComponentContext > xContext = ::comphelper::getProcessComponentContext();
@@ -904,7 +903,7 @@ void handleCrashReport()
css::util::URL aURL;
css::uno::Any aRet = xRecoveryUI->dispatchWithReturnValue(aURL, css::uno::Sequence< css::beans::PropertyValue >());
bool bRet = false;
- aRet >>= bRet;*/
+ aRet >>= bRet;
}
#endif