diff options
author | xuri <xuri.me@gmail.com> | 2019-12-16 08:32:04 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-12-16 08:32:04 +0800 |
commit | a526e90404913f5d649d29a7aeee29f5ac9ff590 (patch) | |
tree | 6f502897cf2083935d6e8842a06146de303e7c98 /xmlWorkbook.go | |
parent | 3763228ea7c37e18633ada493a63a6a8722e508c (diff) |
Fix #426, handle empty workbook view
Diffstat (limited to 'xmlWorkbook.go')
-rw-r--r-- | xmlWorkbook.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlWorkbook.go b/xmlWorkbook.go index 765563b..e9ded6c 100644 --- a/xmlWorkbook.go +++ b/xmlWorkbook.go @@ -33,7 +33,7 @@ type xlsxWorkbook struct { FileVersion *xlsxFileVersion `xml:"fileVersion"` WorkbookPr *xlsxWorkbookPr `xml:"workbookPr"` WorkbookProtection *xlsxWorkbookProtection `xml:"workbookProtection"` - BookViews xlsxBookViews `xml:"bookViews"` + BookViews *xlsxBookViews `xml:"bookViews"` Sheets xlsxSheets `xml:"sheets"` ExternalReferences *xlsxExternalReferences `xml:"externalReferences"` DefinedNames *xlsxDefinedNames `xml:"definedNames"` |