summaryrefslogtreecommitdiff
path: root/sc/inc/colorscale.hxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-02-17 22:47:13 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-02-17 23:15:51 -0600
commitdd0081bdff211e551eac4ac5a36b60f92b57ef86 (patch)
tree7cc6c3ac4e9a3c467ccdb24486226c88a021e372 /sc/inc/colorscale.hxx
parent3920bb664a1d60c3b32f8ff7e9bf6776581ef8b0 (diff)
coverity#984132 Uninitialized scalar field
Change-Id: I2e483d1612e2344b71e0d140bf1fe264fbf9b0e3
Diffstat (limited to 'sc/inc/colorscale.hxx')
-rw-r--r--sc/inc/colorscale.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/inc/colorscale.hxx b/sc/inc/colorscale.hxx
index 9dcce78d9b56..067a5a59d0b0 100644
--- a/sc/inc/colorscale.hxx
+++ b/sc/inc/colorscale.hxx
@@ -311,8 +311,10 @@ struct ScIconSetFormatData
boost::ptr_vector<ScColorScaleEntry> maEntries;
ScIconSetFormatData():
+ eIconSetType(IconSet_3Arrows),
mbShowValue(true),
- mbReverse(false) {}
+ mbReverse(false)
+ {}
};
class SC_DLLPUBLIC ScIconSetFormat : public ScColorFormat