Commit f0b82f97 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

http://bugzserver/show_bug.cgi?id=25478 - Ошибка в консоли при вырезании автофигуры из группы

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57366 954022d7-b5bf-4e40-9824-e11837661b57
parent fe61659a
......@@ -659,8 +659,14 @@ CopyProcessor.prototype =
ParaEnd = ParaStart;
ParaStart = Temp2;
}
}
};
//TODO Стоит пересмотреть флаг bUseSelection и учитывать внутри Selection флаг use.
if(ParaEnd < 0)
ParaEnd = 0;
if(ParaStart < 0)
ParaStart = 0;
for (var i = ParaStart; i <= ParaEnd; i++) {
var item = Container.Content[i];
if (para_Run == item.Type) {
......
......@@ -3544,7 +3544,14 @@ function BinaryDocumentTableWriter(memory, doc, oMapCommentId, oNumIdMap, copyPa
ParaEnd = ParaStart;
ParaStart = Temp2;
}
}
};
//TODO Стоит пересмотреть флаг bUseSelection и учитывать внутри Selection флаг use.
if(ParaEnd < 0)
ParaEnd = 0;
if(ParaStart < 0)
ParaStart = 0;
var Content = par.Content;
//todo commentStart для копирования
var oThis = this;
......
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