Commit c3cdd104 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix parse table ref

parent 8d222c0f
......@@ -1741,7 +1741,7 @@ cStrucTable.prototype.createArea = function(val, cell) {
return this.area;
};
cStrucTable.prototype.buildLocalTableString = function(reservedColumn, local) {
return parserHelp.getColumnNameByType();
return parserHelp.getColumnNameByType(reservedColumn, local);
};
/** @constructor */
......
......@@ -1706,7 +1706,7 @@ parserHelper.prototype.setDigitSeparator = function( sep ){
}
return res;
};
parserHelper.prototype.getColumnNameByType = function(value) {
parserHelper.prototype.getColumnNameByType = function(value, local) {
switch (value) {
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