Commit 385ae866 authored by Oleg Korshul's avatar Oleg Korshul

.

parent a1771911
...@@ -12159,7 +12159,7 @@ Paragraph.prototype.GetSelectedContentControls = function() ...@@ -12159,7 +12159,7 @@ Paragraph.prototype.GetSelectedContentControls = function()
} }
else else
{ {
if (this.Content[this.CurPos.ContentPos].GetSelectedContentControls) if (this.Content[this.CurPos.ContentPos] && this.Content[this.CurPos.ContentPos].GetSelectedContentControls)
this.Content[this.CurPos.ContentPos].GetSelectedContentControls(arrContentControls); this.Content[this.CurPos.ContentPos].GetSelectedContentControls(arrContentControls);
} }
......
...@@ -1077,6 +1077,10 @@ CBlockLevelSdt.prototype.GetContentControlPr = function() ...@@ -1077,6 +1077,10 @@ CBlockLevelSdt.prototype.GetContentControlPr = function()
return oPr; return oPr;
}; };
CBlockLevelSdt.prototype.Restart_CheckSpelling = function()
{
this.Content.Restart_CheckSpelling();
};
//--------------------------------------------------------export-------------------------------------------------------- //--------------------------------------------------------export--------------------------------------------------------
window['AscCommonWord'] = window['AscCommonWord'] || {}; window['AscCommonWord'] = window['AscCommonWord'] || {};
window['AscCommonWord'].CBlockLevelSdt = CBlockLevelSdt; window['AscCommonWord'].CBlockLevelSdt = CBlockLevelSdt;
......
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