summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorAron Budea <aron.budea@collabora.com>2018-06-04 20:35:34 +0200
committerAndras Timar <andras.timar@collabora.com>2018-06-04 23:32:41 +0200
commit68f54670d13ce4d2a93ec59b8760e20669064781 (patch)
tree67278741dd27059bdc9e522b38af6c4dcc1a81f3 /desktop
parent4dfd6d22e50b839d695eaf2983d193156391ffcf (diff)
Disable profile locking
Change-Id: Id64e183eff78e90237c4d1cff224aac302bfbe04 Reviewed-on: https://gerrit.libreoffice.org/55294 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/app.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index ec1b6531316c..7f0ace481270 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -1318,7 +1318,8 @@ int Desktop::Main()
// check user installation directory for lockfile so we can be sure
// there is no other instance using our data files from a remote host
- bool bMustLockProfile = ( getenv( "SAL_NOLOCK_PROFILE" ) == nullptr );
+ // bool bMustLockProfile = ( getenv( "SAL_NOLOCK_PROFILE" ) == nullptr );
+ bool bMustLockProfile = false;
if ( bMustLockProfile )
{
m_xLockfile.reset(new Lockfile);