Commit 008ca811 authored by GoshaZotov's avatar GoshaZotov

change TablePart->isHeaderRow / TablePart->isTotalsRow

parent 85e434a0
......@@ -5818,12 +5818,12 @@ TablePart.prototype.addAutoFilter = function()
TablePart.prototype.isHeaderRow = function()
{
return !!(null === this.HeaderRowCount || this.HeaderRowCount > 0);
return null === this.HeaderRowCount || this.HeaderRowCount > 0;
};
TablePart.prototype.isTotalsRow = function()
{
return !!(this.TotalsRowCount > 0);
return this.TotalsRowCount > 0;
};
......
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