Commit bda102f7 authored by Anna.Pavlova's avatar Anna.Pavlova Committed by Alexander.Trofimov

Поправила баг (http://bugzserver/show_bug.cgi?id=30451)

Он был превнесен в rev 64876 в связи с тем, что Recalculate_Reset приходил до того как был заполнен контент в формуле

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64922 954022d7-b5bf-4e40-9824-e11837661b57
parent e344b7c0
......@@ -4302,7 +4302,8 @@ CMathContent.prototype.Recalculate_Reset = function(StartRange, StartLine, PRS)
this.StartLine = StartLine;
this.StartRange = StartRange;
this.Content[0].Recalculate_Reset(StartRange, StartLine, PRS);
if(this.Content.length > 0)
this.Content[0].Recalculate_Reset(StartRange, StartLine, PRS);
this.protected_ClearLines();
}
......
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