Commit 78e232ac authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

правка бага 21118 - [pptx] Текст в таблице сдвинулся влево

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50606 954022d7-b5bf-4e40-9824-e11837661b57
parent 253648f1
......@@ -940,7 +940,7 @@ CDocumentContent.prototype =
_bullet.m_nType = numbering_presentationnumfrmt_Char;
_bullet.m_sChar = _final_bullet.bulletType.Char[0];
_cur_paragraph.Add_PresentationNumbering(_bullet);
_cur_paragraph.Add_PresentationNumbering(_bullet, true);
break;
}
......@@ -948,12 +948,12 @@ CDocumentContent.prototype =
{
_bullet.m_nType = g_NumberingArr[_final_bullet.bulletType.AutoNumType];
_bullet.m_nStartAt = _final_bullet.bulletType.startAt;
_cur_paragraph.Add_PresentationNumbering(_bullet);
_cur_paragraph.Add_PresentationNumbering(_bullet, true);
break;
}
case BULLET_TYPE_BULLET_NONE :
{
_cur_paragraph.Remove_PresentationNumbering();
_cur_paragraph.Remove_PresentationNumbering(true);
break;
}
case BULLET_TYPE_BULLET_BLIP :
......@@ -961,7 +961,7 @@ CDocumentContent.prototype =
_bullet.m_nType = numbering_presentationnumfrmt_Char;
_bullet.m_sChar = "";
_cur_paragraph.Add_PresentationNumbering(_bullet);
_cur_paragraph.Add_PresentationNumbering(_bullet, true);
break;
}
}
......@@ -1231,7 +1231,7 @@ CDocumentContent.prototype =
_bullet.m_nType = numbering_presentationnumfrmt_Char;
_bullet.m_sChar = "";
_cur_paragraph.Add_PresentationNumbering(_bullet);
_cur_paragraph.Add_PresentationNumbering(_bullet, true);
break;
}
}
......
......@@ -1145,7 +1145,7 @@ CGraphicFrame.prototype =
case phType_body :
case phType_subTitle :
case phType_obj :
case null :
//case null :
{
if(master.txStyles.bodyStyle && master.txStyles.bodyStyle.levels[level])
{
......
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