Commit b6c3aa2f authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

fix bug http://bugzserver/show_bug.cgi?id=19890

При замене всего был неправильный индекс для уникальности

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49565 954022d7-b5bf-4e40-9824-e11837661b57
parent 5a8475c5
...@@ -8783,7 +8783,7 @@ ...@@ -8783,7 +8783,7 @@
findResult = t.findCellText(optionsFind); findResult = t.findCellText(optionsFind);
if (undefined === findResult) if (undefined === findResult)
break; break;
index = findResult.c1 + findResult.r1; index = findResult.c1 + '-' + findResult.r1;
if (aReplaceCellsIndex[index]) if (aReplaceCellsIndex[index])
break; break;
aReplaceCellsIndex[index] = true; aReplaceCellsIndex[index] = true;
......
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