diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-05 14:35:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-05 14:35:46 +0200 |
commit | db0ac3d2cb52be60b850fb522f697c970eaf51bd (patch) | |
tree | a8be9b934adf094bdc5d1cbaa63344c5c3bb66dd | |
parent | 8a334eb222906909bf77006687411ff9e03d9da3 (diff) |
loplugin:stringconstant
Change-Id: I68c63d560cfd7ec82802cd3f073cdd0544cff99b
-rw-r--r-- | ucbhelper/source/client/content.cxx | 4 |
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 ); |