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

Bug 25508 - [XLS] Таблица открывается с ошибкой в консоли 'dy'.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57414 954022d7-b5bf-4e40-9824-e11837661b57
parent 37886f63
......@@ -10556,6 +10556,7 @@ CDLbls.prototype =
for(var i = 0; i < this.dLbl.length; ++i)
{
this.dLbl[i] && checkTxBodyDefFonts(allFonts, this.dLbl[i].txPr);
this.dLbl[i].tx && this.dLbl[i].tx.rich && this.dLbl[i].tx.rich.content && this.dLbl[i].tx.rich.content.Document_Get_AllFontNames(allFonts);
}
},
getObjectType: function()
......
......@@ -1427,13 +1427,36 @@ CChartSpace.prototype =
chart.legend.legendEntryes[i] && checkTxBodyDefFonts(allFonts, chart.legend.legendEntryes[i].txPr);
}
}
chart.title && checkTxBodyDefFonts(allFonts, chart.title.txPr);
if(chart.title)
{
checkTxBodyDefFonts(allFonts, chart.title.txPr);
if(chart.title.tx && chart.title.tx.rich)
{
checkTxBodyDefFonts(allFonts, chart.title.tx.rich);
chart.title.tx.rich.content && chart.title.tx.rich.content.Document_Get_AllFontNames(allFonts);
}
}
var plot_area = chart.plotArea;
if(plot_area)
{
for(i = 0; i < plot_area.charts.length; ++i)
{
plot_area.charts[i] && plot_area.charts[i].documentCreateFontMap(allFonts);/*TODO нажо бы этот метод переименовать чтоб название не вводило в заблуждение*/
plot_area.charts[i] && plot_area.charts[i].documentCreateFontMap(allFonts);/*TODO надо бы этот метод переименовать чтоб название не вводило в заблуждение*/
}
var cur_axis;
for(i = 0; i < plot_area.axId.length; ++i)
{
cur_axis = plot_area.axId[i];
checkTxBodyDefFonts(allFonts, cur_axis.txPr);
if(cur_axis.title)
{
checkTxBodyDefFonts(allFonts, cur_axis.title.txPr);
if(cur_axis.title.tx && chart.title.tx.rich)
{
checkTxBodyDefFonts(allFonts, cur_axis.title.tx.rich);
cur_axis.title.tx.rich.content && cur_axis.title.tx.rich.content.Document_Get_AllFontNames(allFonts);
}
}
}
}
}
......
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