summaryrefslogtreecommitdiff
path: root/sheet.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2019-03-20 16:52:33 +0800
committerxuri <xuri.me@gmail.com>2019-03-20 16:52:33 +0800
commit40ea8eb014c200c5ed8d81918ee56b0579aca324 (patch)
treea77370e074cc3b53f642b80bc3494ac35a25d17c /sheet.go
parentbeff7b4f3c1c9a964d5f09181e1368d3a2b9a096 (diff)
resolve #360, fix axis parse issue when add / get pictures;
typo fixed and go test updated
Diffstat (limited to 'sheet.go')
-rw-r--r--sheet.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/sheet.go b/sheet.go
index ee96277..768d0a8 100644
--- a/sheet.go
+++ b/sheet.go
@@ -1032,7 +1032,8 @@ func (f *File) workSheetRelsWriter() {
}
}
-// fillSheetData fill missing row and cell XML data to made it continous from first cell [1, 1] to last cell [col, row]
+// fillSheetData fill missing row and cell XML data to made it continuous from
+// first cell [1, 1] to last cell [col, row]
func prepareSheetXML(xlsx *xlsxWorksheet, col int, row int) {
rowCount := len(xlsx.SheetData.Row)
if rowCount < row {