diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-05-13 13:28:21 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-05-13 13:28:21 +0800 |
commit | d93a156355547c583bf35bf1201f92a3c68e89f0 (patch) | |
tree | afe5f18f86823e0c4ce672407b1009d7b94017b4 /xmlStyles.go | |
parent | 66349f8ec039351770536b83b87c455543c0cf8a (diff) |
Initialize comments support & go test updated.
Diffstat (limited to 'xmlStyles.go')
-rw-r--r-- | xmlStyles.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlStyles.go b/xmlStyles.go index 682c5d3..aa0c9c8 100644 --- a/xmlStyles.go +++ b/xmlStyles.go @@ -52,8 +52,8 @@ type xlsxLine struct { type xlsxColor struct { Auto bool `xml:"auto,attr,omitempty"` RGB string `xml:"rgb,attr,omitempty"` - Indexed *int `xml:"indexed,attr,omitempty"` - Theme *int `xml:"theme,attr,omitempty"` + Indexed int `xml:"indexed,attr,omitempty"` + Theme int `xml:"theme,attr,omitempty"` Tint float64 `xml:"tint,attr,omitempty"` } |