Commit 329b80a4 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix parse table ref

parent 1247379b
...@@ -1717,7 +1717,7 @@ cStrucTable.prototype.createArea = function ( val, cell ) { ...@@ -1717,7 +1717,7 @@ cStrucTable.prototype.createArea = function ( val, cell ) {
return this.area; return this.area;
}; };
cStrucTable.prototype.buildLocalTableString = function (reservedColumn,local) { cStrucTable.prototype.buildLocalTableString = function (reservedColumn,local) {
return parserHelp.getColumnNameByType(); return parserHelp.getColumnNameByType(reservedColumn, local);
}; };
/** @constructor */ /** @constructor */
......
...@@ -1682,7 +1682,7 @@ parserHelper.prototype.setDigitSeparator = function( sep ){ ...@@ -1682,7 +1682,7 @@ parserHelper.prototype.setDigitSeparator = function( sep ){
} }
return res; return res;
}; };
parserHelper.prototype.getColumnNameByType = function(value) { parserHelper.prototype.getColumnNameByType = function(value, local) {
switch (value) { switch (value) {
case FormulaTablePartInfo.all: case FormulaTablePartInfo.all:
{ {
......
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