summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2022-04-26 00:00:18 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2022-04-26 08:50:56 +0200
commita0bae88a9cd47185a71cbfd4c86bbd86ae44d30e (patch)
treed642bfcf01bc765a1a7afda89ee6e72a4cf42549 /oox
parent7678e7ed88007061c3469db3b28b0e91acea7ed6 (diff)
tdf#147586: Initialize mbBulletColorFollowText to false
Otherwise, once it's set to true, it's never reset Change-Id: Ie8a752da4162775f40c2f84f480e6a103eb55942 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133422 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/textparagraphproperties.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/oox/source/drawingml/textparagraphproperties.cxx b/oox/source/drawingml/textparagraphproperties.cxx
index 75dbf6bcea4a..ce40f69eb4f6 100644
--- a/oox/source/drawingml/textparagraphproperties.cxx
+++ b/oox/source/drawingml/textparagraphproperties.cxx
@@ -58,7 +58,8 @@ using ::com::sun::star::awt::FontDescriptor;
namespace oox::drawingml {
BulletList::BulletList( )
-: maBulletColorPtr( std::make_shared<Color>() )
+: maBulletColorPtr( std::make_shared<Color>() ),
+ mbBulletColorFollowText ( false )
{
}