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

http://bugzserver/show_bug.cgi?id=24924 - Сохранятся стиль текста для...

http://bugzserver/show_bug.cgi?id=24924 - Сохранятся стиль текста для автофигуры, при копировании его в ячейку

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57729 954022d7-b5bf-4e40-9824-e11837661b57
parent a72797ba
......@@ -4639,6 +4639,19 @@ PasteProcessor.prototype =
if(!this.bIsPlainText)
{
var rPr = this._read_rPr(node, bUseOnlyInherit);
//заглушка для вставки в excel внутрь шейпа
var tempRpr;
if(this.pasteInExcel === true && this.oDocument && this.oDocument.Parent && this.oDocument.Parent.parent && this.oDocument.Parent.parent.getObjectType() == historyitem_type_Shape)
{
tempRpr = new CTextPr();
tempRpr.Underline = rPr.Underline;
tempRpr.Bold = rPr.Bold;
tempRpr.Italic = rPr.Italic;
rPr = tempRpr;
}
//���� ��������� ��������� ���������� ��������� �������
if(false == Common_CmpObj2(this.oCur_rPr, rPr))
{
......
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