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

loplugin:stringconstant

Change-Id: I52e225a71726629abd788e1a9e720e4b589aeeb5
üst 98236528
......@@ -586,11 +586,10 @@ IMPL_LINK_NOARG_TYPED(SvxPathTabPage, PathHdl_Impl, Button*, void)
OUString sNewPath = pMultiDlg->GetPath();
if ( !sNewPath.isEmpty() )
{
const sal_Unicode cDelim = MULTIPATH_DELIMITER;
sal_Int32 nNextPos = 0;
for (;;)
{
const OUString sToken(sNewPath.getToken( 0, cDelim, nNextPos ));
const OUString sToken(sNewPath.getToken( 0, MULTIPATH_DELIMITER, nNextPos ));
if ( nNextPos<0 )
{
// Last token need a different handling
......
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