diff options
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/app.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index 798d60d71715..a9d10c3a99ba 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -569,11 +569,14 @@ void Desktop::Init() SetBootstrapError( BE_OFFICECONFIG_BROKEN, e.Message ); } + // test code for ProfileSafeMode to allow testing the fail + // of loading the office configuration initially. To use, + // either set to true and compile, or set a breakpoint + // in debugger and change the local bool static bool bTryHardOfficeconfigBroken(false); if (bTryHardOfficeconfigBroken) { - SAL_WARN("configmgr", "################# Desktop::Init() #####################"); SetBootstrapError(BE_OFFICECONFIG_BROKEN, OUString()); } } |