summaryrefslogtreecommitdiff
path: root/ucbhelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-05 14:35:46 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-05 14:35:46 +0200
commitdb0ac3d2cb52be60b850fb522f697c970eaf51bd (patch)
treea8be9b934adf094bdc5d1cbaa63344c5c3bb66dd /ucbhelper
parent8a334eb222906909bf77006687411ff9e03d9da3 (diff)
loplugin:stringconstant
Change-Id: I68c63d560cfd7ec82802cd3f073cdd0544cff99b
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 );