diff options
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"` } |