Kaydet (Commit) 2ba8a592 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: loplugin:stringconstant

Fix warning: in call of rtl::OUString::operator+=, replace OUString
constructed from an ASCII char constant with a string literal.

Change-Id: I56ccf89b6b6b8c8b9a0d54ba688adc5c45ec28e1
üst a8139cce
......@@ -598,12 +598,12 @@ IMPL_LINK_NOARG_TYPED(SvxPathTabPage, PathHdl_Impl, Button*, void)
break;
}
if ( !sUser.isEmpty() )
sUser += OUString(cDelim);
sUser += OUStringLiteral1<MULTIPATH_DELIMITER>();
sUser += sToken;
}
sFullPath = sUser;
if ( !sFullPath.isEmpty() )
sFullPath += OUString(cDelim);
sFullPath += OUStringLiteral1<MULTIPATH_DELIMITER>();
sFullPath += sWritable;
}
......
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