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

ошибки при копировании через бинарник, если нет NumId списков.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49384 954022d7-b5bf-4e40-9824-e11837661b57
parent ffa152ab
......@@ -626,7 +626,7 @@ function BinaryFileWriter(doc)
if(null != sParaStyle)
this.copyParams.oUsedStyleMap[sParaStyle] = 1;
var oNumPr = Item.Numbering_Get();
if(null != oNumPr && 0 != oNumPr.NumId)
if(null != oNumPr && null != oNumPr.NumId && 0 != oNumPr.NumId)
{
if(null == this.copyParams.oUsedNumIdMap[oNumPr.NumId])
{
......
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