Commit 9c7e5fb2 authored by Dmitry.Shahtanov's avatar Dmitry.Shahtanov Committed by Alexander.Trofimov

fix: Bug 29044 - Теряется содержимое формулы в ячейке при открытии документа...

fix: Bug 29044 - Теряется содержимое формулы в ячейке при открытии документа XLSX (http://bugzserver/show_bug.cgi?id=29044)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64117 954022d7-b5bf-4e40-9824-e11837661b57
parent da6dc3ce
......@@ -3683,6 +3683,9 @@ parserFormula.prototype = {
var found_operator = null, operandStr = this.operand_str.toUpperCase();
if ( operandStr in cFormulaList )
found_operator = new cFormulaList[operandStr]();
else{
found_operator = new cBaseFunction(operandStr);
}
if ( found_operator != null ) {
this.elemArr.push( found_operator );
......
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