Kaydet (Commit) 9f322278 authored tarafından Matteo Casalin's avatar Matteo Casalin

This was probably the original intent (wrong index in inner loop body)

Change-Id: I17bec80168cc56fa5ab47da65e85a90c32c958b3
üst 83dd91fb
......@@ -429,7 +429,7 @@ IMPL_LINK_NOARG_TYPED(SvxPathTabPage, StandardHdl_Impl, Button*, void)
OUString sOnePath = aOldPath.getToken( i, MULTIPATH_DELIMITER );
for ( sal_uInt16 j = 0; !bFound && j < nIntCount; ++j )
{
if ( sInternal.getToken( i, MULTIPATH_DELIMITER ) == sOnePath )
if ( sInternal.getToken( j, MULTIPATH_DELIMITER ) == sOnePath )
bFound = true;
}
if ( !bFound )
......
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