Kaydet (Commit) 903627c0 authored tarafından Mike Kaganski's avatar Mike Kaganski

Function already take const OUString&

Change-Id: I87af48158b4afaf81da8545f9bccf459f11031d6
Reviewed-on: https://gerrit.libreoffice.org/48823Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMike Kaganski <mike.kaganski@collabora.com>
üst f164c682
...@@ -781,12 +781,12 @@ RequestHandler::Status PipeIpcThread::enable(rtl::Reference<IpcThread> * thread) ...@@ -781,12 +781,12 @@ RequestHandler::Status PipeIpcThread::enable(rtl::Reference<IpcThread> * thread)
osl::Security security; osl::Security security;
// Try to create pipe // Try to create pipe
if ( pipe.create( aPipeIdent.getStr(), osl_Pipe_CREATE, security )) if ( pipe.create( aPipeIdent, osl_Pipe_CREATE, security ))
{ {
// Pipe created // Pipe created
nPipeMode = PIPEMODE_CREATED; nPipeMode = PIPEMODE_CREATED;
} }
else if( pipe.create( aPipeIdent.getStr(), osl_Pipe_OPEN, security )) // Creation not successful, now we try to connect else if( pipe.create( aPipeIdent, osl_Pipe_OPEN, security )) // Creation not successful, now we try to connect
{ {
osl::StreamPipe aStreamPipe(pipe.getHandle()); osl::StreamPipe aStreamPipe(pipe.getHandle());
if (readStringFromPipe(aStreamPipe) == SEND_ARGUMENTS) if (readStringFromPipe(aStreamPipe) == SEND_ARGUMENTS)
......
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