summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--desktop/source/app/app.cxx2
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Recovery.xcs2
-rw-r--r--svx/source/dialog/docrecovery.cxx2
-rw-r--r--svx/source/unodraw/recoveryui.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 9f3ac9e968cc..4a02c288acaf 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -1192,7 +1192,7 @@ void Desktop::retrieveCrashReporterState()
css::uno::Reference< css::lang::XMultiServiceFactory > xSMGR = ::comphelper::getProcessServiceFactory();
- sal_Bool bEnabled( sal_True );
+ sal_Bool bEnabled(sal_False);
if ( xSMGR.is() )
{
css::uno::Any aVal = ::comphelper::ConfigurationHelper::readDirectKey(
diff --git a/officecfg/registry/schema/org/openoffice/Office/Recovery.xcs b/officecfg/registry/schema/org/openoffice/Office/Recovery.xcs
index f424180c7609..e08bf3839924 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Recovery.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Recovery.xcs
@@ -127,7 +127,7 @@
<info>
<desc>Specifies if the crash reporter should be enabled or disabled.</desc>
</info>
- <value>true</value>
+ <value>false</value>
</prop>
</group>
<group oor:name="AutoSave">
diff --git a/svx/source/dialog/docrecovery.cxx b/svx/source/dialog/docrecovery.cxx
index ba1f9d887bfe..8def4d8cbcdb 100644
--- a/svx/source/dialog/docrecovery.cxx
+++ b/svx/source/dialog/docrecovery.cxx
@@ -1040,7 +1040,7 @@ RecoveryDialog::RecoveryDialog(Window* pParent,
::rtl::OUString CFG_PATH_CRASHREPORTER( RTL_CONSTASCII_USTRINGPARAM( "CrashReporter" ));
::rtl::OUString CFG_ENTRY_ENABLED( RTL_CONSTASCII_USTRINGPARAM ( "Enabled" ));
- sal_Bool bCrashRepEnabled( sal_True );
+ sal_Bool bCrashRepEnabled( sal_False );
css::uno::Any aVal = ::comphelper::ConfigurationHelper::readDirectKey(
pCore->getSMGR(),
CFG_PACKAGE_RECOVERY,
diff --git a/svx/source/unodraw/recoveryui.cxx b/svx/source/unodraw/recoveryui.cxx
index 00c89833d7f0..9a5c3b66acfa 100644
--- a/svx/source/unodraw/recoveryui.cxx
+++ b/svx/source/unodraw/recoveryui.cxx
@@ -298,7 +298,7 @@ void RecoveryUI::impl_doRecovery()
::rtl::OUString CFG_PATH_CRASHREPORTER( RTL_CONSTASCII_USTRINGPARAM( "CrashReporter" ));
::rtl::OUString CFG_ENTRY_ENABLED( RTL_CONSTASCII_USTRINGPARAM ( "Enabled" ));
- sal_Bool bCrashRepEnabled( sal_True );
+ sal_Bool bCrashRepEnabled(sal_False);
css::uno::Any aVal = ::comphelper::ConfigurationHelper::readDirectKey(
m_xSMGR,
CFG_PACKAGE_RECOVERY,