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

delete unused fractionType and method asc_setFractionType

parent f2fd99ea
...@@ -2137,14 +2137,12 @@ ...@@ -2137,14 +2137,12 @@
this.type = Asc.c_oAscNumFormatType.General; this.type = Asc.c_oAscNumFormatType.General;
this.decimalPlaces = 2; this.decimalPlaces = 2;
this.separator = false; this.separator = false;
this.symbol = false; this.symbol = null;
this.fractionType = 0;
} }
asc_CFormatCellsInfo.prototype.asc_setType = function (val) {this.type = val;}; asc_CFormatCellsInfo.prototype.asc_setType = function (val) {this.type = val;};
asc_CFormatCellsInfo.prototype.asc_setDecimalPlaces = function (val) {this.decimalPlaces = val;}; asc_CFormatCellsInfo.prototype.asc_setDecimalPlaces = function (val) {this.decimalPlaces = val;};
asc_CFormatCellsInfo.prototype.asc_setSeparator = function (val) {this.separator = val;}; asc_CFormatCellsInfo.prototype.asc_setSeparator = function (val) {this.separator = val;};
asc_CFormatCellsInfo.prototype.asc_setSymbol = function (val) {this.symbol = val;}; asc_CFormatCellsInfo.prototype.asc_setSymbol = function (val) {this.symbol = val;};
asc_CFormatCellsInfo.prototype.asc_setFractionType = function (val) {this.fractionType = val;};
/* /*
* Export * Export
...@@ -2322,5 +2320,4 @@ ...@@ -2322,5 +2320,4 @@
prot["asc_setDecimalPlaces"] = prot.asc_setDecimalPlaces; prot["asc_setDecimalPlaces"] = prot.asc_setDecimalPlaces;
prot["asc_setSeparator"] = prot.asc_setSeparator; prot["asc_setSeparator"] = prot.asc_setSeparator;
prot["asc_setSymbol"] = prot.asc_setSymbol; prot["asc_setSymbol"] = prot.asc_setSymbol;
prot["asc_setFractionType"] = prot.asc_setFractionType;
})(window); })(window);
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