summaryrefslogtreecommitdiff
path: root/xmlStyles.go
diff options
context:
space:
mode:
Diffstat (limited to 'xmlStyles.go')
-rwxr-xr-xxmlStyles.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/xmlStyles.go b/xmlStyles.go
index 46587da..49abe3c 100755
--- a/xmlStyles.go
+++ b/xmlStyles.go
@@ -88,13 +88,13 @@ type xlsxFont struct {
Name *attrValString `xml:"name"`
Charset *attrValInt `xml:"charset"`
Family *attrValInt `xml:"family"`
- B bool `xml:"b,omitempty"`
- I bool `xml:"i,omitempty"`
- Strike bool `xml:"strike,omitempty"`
- Outline bool `xml:"outline,omitempty"`
- Shadow bool `xml:"shadow,omitempty"`
- Condense bool `xml:"condense,omitempty"`
- Extend bool `xml:"extend,omitempty"`
+ B *bool `xml:"b,omitempty"`
+ I *bool `xml:"i,omitempty"`
+ Strike *bool `xml:"strike,omitempty"`
+ Outline *bool `xml:"outline,omitempty"`
+ Shadow *bool `xml:"shadow,omitempty"`
+ Condense *bool `xml:"condense,omitempty"`
+ Extend *bool `xml:"extend,omitempty"`
Color *xlsxColor `xml:"color"`
Sz *attrValFloat `xml:"sz"`
U *attrValString `xml:"u"`