Kaydet (Commit) db0ac3d2 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:stringconstant

Change-Id: I68c63d560cfd7ec82802cd3f073cdd0544cff99b
üst 8a334eb2
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment