diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-07-16 13:03:45 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-07-16 13:03:45 +0800 |
commit | 3b2c80ddc37db87bf090f531ae6afcb70d49b759 (patch) | |
tree | bc6f6a2992d502cee6ab356b46bbd1710879a33d /xmlWorkbook.go | |
parent | 4f942255e460d6eb3235c3973fe22eb19c328b43 (diff) |
Trim blank cells which created by `completeCol()`, relate issue #81
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 ddf8ce2..b04b173 100644 --- a/xmlWorkbook.go +++ b/xmlWorkbook.go @@ -203,7 +203,7 @@ type xlsxDefinedName struct { FunctionGroupID int `xml:"functionGroupId,attr,omitempty"` Help string `xml:"help,attr,omitempty"` Hidden bool `xml:"hidden,attr,omitempty"` - LocalSheetID int `xml:"localSheetId,attr"` + LocalSheetID *int `xml:"localSheetId,attr"` Name string `xml:"name,attr,omitempty"` PublishToServer bool `xml:"publishToServer,attr,omitempty"` ShortcutKey string `xml:"shortcutKey,attr,omitempty"` |