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