diff options
Diffstat (limited to 'svl/source/misc')
-rw-r--r-- | svl/source/misc/documentlockfile.cxx | 2 | ||||
-rw-r--r-- | svl/source/misc/sharecontrolfile.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/misc/documentlockfile.cxx b/svl/source/misc/documentlockfile.cxx index 3f142093417b..67b20b9ebcfa 100644 --- a/svl/source/misc/documentlockfile.cxx +++ b/svl/source/misc/documentlockfile.cxx @@ -120,7 +120,7 @@ bool DocumentLockFile::CreateOwnLockFile() // try to let the file be hidden if possible try { - aTargetContent.setPropertyValue( OUString( "IsHidden" ), uno::makeAny( sal_True ) ); + aTargetContent.setPropertyValue("IsHidden", uno::makeAny( sal_True ) ); } catch( uno::Exception& ) {} } catch( ucb::NameClashException& ) diff --git a/svl/source/misc/sharecontrolfile.cxx b/svl/source/misc/sharecontrolfile.cxx index 49443c868261..62e413a8973a 100644 --- a/svl/source/misc/sharecontrolfile.cxx +++ b/svl/source/misc/sharecontrolfile.cxx @@ -110,7 +110,7 @@ void ShareControlFile::OpenStream() // try to let the file be hidden if possible try { - aContent.setPropertyValue( OUString( "IsHidden" ), uno::makeAny( sal_True ) ); + aContent.setPropertyValue("IsHidden", uno::makeAny( sal_True ) ); } catch( uno::Exception& ) {} // Try to open one more time |