Commit 0e67351b authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

Не подхватыаются стили параграфа в таблице при копировании через бинарник

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48781 954022d7-b5bf-4e40-9824-e11837661b57
parent 65583c6e
......@@ -618,8 +618,6 @@ function BinaryFileWriter(doc)
}
this.CopyParagraph = function(Item, bUseSelection)
{
if(true == this.copyParams.bLockCopyPar)
return;
var oThis = this;
//анализируем используемые списки и стили
var sParaStyle = Item.Style_Get();
......@@ -634,6 +632,9 @@ function BinaryFileWriter(doc)
this.copyParams.nNumIdIndex++;
}
}
//сами параграфы скопируются в методе CopyTable, нужно только проанализировать стили
if(true == this.copyParams.bLockCopyPar)
return;
this.bs.WriteItem(c_oSerParType.Par, function(){oThis.copyParams.bdtw.WriteParapraph(Item, bUseSelection);});
this.copyParams.itemCount++;
}
......
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