diff options
Diffstat (limited to 'desktop/source/app/lockfile2.cxx')
-rw-r--r-- | desktop/source/app/lockfile2.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/source/app/lockfile2.cxx b/desktop/source/app/lockfile2.cxx index 44447927f63b..98c2903f9403 100644 --- a/desktop/source/app/lockfile2.cxx +++ b/desktop/source/app/lockfile2.cxx @@ -31,10 +31,10 @@ bool Lockfile_execWarning( Lockfile const * that ) // read information from lock OUString aLockname = that->m_aLockname; Config aConfig(aLockname); - aConfig.SetGroup( LOCKFILE_GROUP ); - OString aHost = aConfig.ReadKey( LOCKFILE_HOSTKEY ); - OString aUser = aConfig.ReadKey( LOCKFILE_USERKEY ); - OString aTime = aConfig.ReadKey( LOCKFILE_TIMEKEY ); + aConfig.SetGroup( LOCKFILE_GROUP ""_ostr ); + OString aHost = aConfig.ReadKey( LOCKFILE_HOSTKEY ""_ostr ); + OString aUser = aConfig.ReadKey( LOCKFILE_USERKEY ""_ostr ); + OString aTime = aConfig.ReadKey( LOCKFILE_TIMEKEY ""_ostr ); // display warning and return response std::unique_ptr<weld::MessageDialog> xBox(Application::CreateMessageDialog(nullptr, |