summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-20 17:26:19 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-20 17:27:52 +0200
commit93d71c4b819a1236467e2732e6430245aa08c7b4 (patch)
tree36d3f99e42277ca003f8db145acf96170cb3c9b4 /sc/inc
parentba6ba7b759f53cd882528233eff469f6caa59544 (diff)
ScIconSetFormatData::mbCustom read uninitialized...
...in ScIconSetFormat::GetIconSetInfo, e.g. during CppunitTest_sc_ucalc Change-Id: Ia4380110cafdb0f220b99a8e1aeb5c3efde60d7f (cherry picked from commit 186b1e00017c163fdef5e8ceb1221c2d416b32cf)
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/colorscale.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/colorscale.hxx b/sc/inc/colorscale.hxx
index 6a2115f06001..423d1fa8a442 100644
--- a/sc/inc/colorscale.hxx
+++ b/sc/inc/colorscale.hxx
@@ -349,7 +349,8 @@ struct ScIconSetFormatData
ScIconSetFormatData():
eIconSetType(IconSet_3Arrows),
mbShowValue(true),
- mbReverse(false)
+ mbReverse(false),
+ mbCustom(false)
{}
};