diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-23 19:05:59 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-26 18:44:48 +0200 |
commit | 3ee3e7946c4a772fd13eada4b235479581190dce (patch) | |
tree | 70560d5e3f727cb4dd3b5a4b48522c3f92f49bc9 /desktop | |
parent | 83a486546f535b32a565d9215e7584c5572c2fb0 (diff) |
Lock files make no sense on Android or iOS
Change-Id: Ie8d05b8596fb7d17e057bc32c7a4204a9ff54021
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/cmdlineargs.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/desktop/source/app/cmdlineargs.cxx b/desktop/source/app/cmdlineargs.cxx index 83a251c623bf..6ebe54eef62d 100644 --- a/desktop/source/app/cmdlineargs.cxx +++ b/desktop/source/app/cmdlineargs.cxx @@ -442,12 +442,14 @@ bool CommandLineArgs::InterpretCommandLineParameter( const ::rtl::OUString& aArg { m_nologo = true; } +#if !defined(ANDROID) && !defined(IOS) else if ( oArg == "nolockcheck" ) { m_nolockcheck = true; // Workaround for automated testing ::svt::DocumentLockFile::AllowInteraction( false ); } +#endif else if ( oArg == "help" || aArg == "-h" || aArg == "-?" ) { m_help = true; |