diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-20 22:06:55 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-22 08:43:49 +0100 |
commit | 9e41835048d04609089b22a24895a21c83bd58d6 (patch) | |
tree | 80b6ef92bc9860be0460c3a2d86cd76deeefa728 /sc/source | |
parent | fbe7a6e1306afde784923a4f824fd0a105caf4bf (diff) |
coverity#708074 Uninitialized scalar field
Change-Id: Ifa887cdaacf5c3d711333f95f0b4c041932ce4f8
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/xml/xmldpimp.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/filter/xml/xmldpimp.cxx b/sc/source/filter/xml/xmldpimp.cxx index 1e1fed9e14f2..ee4b038402bc 100644 --- a/sc/source/filter/xml/xmldpimp.cxx +++ b/sc/source/filter/xml/xmldpimp.cxx @@ -985,6 +985,8 @@ ScXMLDataPilotFieldContext::ScXMLDataPilotFieldContext( ScXMLImport& rImport, fStep(0.0), nUsedHierarchy(1), nGroupPart(0), + nFunction(0), + nOrientation(0), bSelectedPage(false), bIsGroupField(false), bDateValue(false), |