diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2017-03-20 13:50:21 +0100 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2017-03-20 13:52:40 +0100 |
commit | e503a69e962bf1b39104e3df91b452702a62aa0e (patch) | |
tree | 529ed9d386b23a3c9bda5b69e0778224d40be0fd /desktop/source/app | |
parent | 66067b845ba5c1de0d5acae3797c36b7d12ce7b6 (diff) |
don't check safe mode on Android
Change-Id: I2ebd3ad3783cd0bb0236574edb1cb428c522aed3
Diffstat (limited to 'desktop/source/app')
-rw-r--r-- | desktop/source/app/app.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index fde39b850b81..bf2243694675 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -2080,11 +2080,12 @@ void Desktop::OpenClients() // need some time, where the user won't see any results and wait for finishing the office startup... bool bAllowRecoveryAndSessionManagement = ( !rArgs.IsNoRestore() ) && ( !rArgs.IsHeadless() ); +#if !defined ANDROID // Enter safe mode if requested if (Application::IsSafeModeEnabled()) { handleSafeMode(); } - +#endif #if HAVE_FEATURE_BREAKPAD if (crashReportInfoExists()) |