Skip to content

Commit

Permalink
[se] Add ;
Browse files Browse the repository at this point in the history
  • Loading branch information
GoshaZotov committed Jul 17, 2023
1 parent 7d8105f commit fe422d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cell/model/Serialize.js
Original file line number Diff line number Diff line change
Expand Up @@ -5575,7 +5575,7 @@
}
var stylesForWrite = oThis.isCopyPaste ? undefined : oThis.stylesForWrite;
this.bs.WriteItem(c_oSer_PivotTypes.table, function() {pivotTable.toXml(oThis.memory, stylesForWrite);});
}
};
this.WriteHeaderFooter = function(headerFooter)
{
var oThis = this;
Expand Down Expand Up @@ -5615,7 +5615,7 @@
this.memory.WriteByte(c_oSer_HeaderFooter.OddHeader);
this.memory.WriteString2(headerFooter.oddHeader.getStr());
}
}
};
this.WriteRowColBreaks = function(breaks)
{
var oThis = this;
Expand Down
3 changes: 1 addition & 2 deletions cell/view/WorksheetView.js
Original file line number Diff line number Diff line change
Expand Up @@ -3879,7 +3879,6 @@


const footerStartPos = height - bottom;

let drawPortion = function(index) {
var portion = headerFooterParser.tokens[index];
if(!portion) {
Expand Down Expand Up @@ -4001,7 +4000,7 @@
}

oGraphics.SaveGrState();
oGraphics.transform3(new AscCommon.CMatrix())
oGraphics.transform3(new AscCommon.CMatrix());
oGraphics.AddClipRect(left, top, width - (left + right), height - (top + bottom));
oShape.draw(oGraphics);

Expand Down

0 comments on commit fe422d9

Please sign in to comment.