summaryrefslogtreecommitdiff
path: root/ucbhelper
diff options
context:
space:
mode:
Diffstat (limited to 'ucbhelper')
-rw-r--r--ucbhelper/source/client/content.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucbhelper/source/client/content.cxx b/ucbhelper/source/client/content.cxx
index 3ee7688646a9..677a6a0d442d 100644
--- a/ucbhelper/source/client/content.cxx
+++ b/ucbhelper/source/client/content.cxx
@@ -1100,7 +1100,7 @@ void Content::lock()
throw( CommandAbortedException, RuntimeException, Exception )
{
Command aCommand;
- aCommand.Name = rtl::OUString::createFromAscii( "lock" );
+ aCommand.Name = "lock";
aCommand.Handle = -1; // n/a
m_xImpl->executeCommand( aCommand );
@@ -1112,7 +1112,7 @@ void Content::unlock()
{
Command aCommand;
- aCommand.Name = rtl::OUString::createFromAscii( "unlock" );
+ aCommand.Name = "unlock";
aCommand.Handle = -1; // n/a
m_xImpl->executeCommand( aCommand );