[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - sc/inc
Stephan Bergmann
sbergman at redhat.com
Wed May 20 08:28:26 PDT 2015
sc/inc/colorscale.hxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 93d71c4b819a1236467e2732e6430245aa08c7b4
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Wed May 20 17:26:19 2015 +0200
ScIconSetFormatData::mbCustom read uninitialized...
...in ScIconSetFormat::GetIconSetInfo, e.g. during CppunitTest_sc_ucalc
Change-Id: Ia4380110cafdb0f220b99a8e1aeb5c3efde60d7f
(cherry picked from commit 186b1e00017c163fdef5e8ceb1221c2d416b32cf)
diff --git a/sc/inc/colorscale.hxx b/sc/inc/colorscale.hxx
index 6a2115f..423d1fa 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)
{}
};
More information about the Libreoffice-commits
mailing list