From 97e888fc212276de19ec8158a5e778f942c6b7d1 Mon Sep 17 00:00:00 2001 From: Felix Zhang Date: Thu, 18 Apr 2013 18:20:18 +0800 Subject: bnc#793414: Fix the mis-displayed bullet char The bullet char is mistakenly set to Level 0 without setting the correct NumberingLevel Change-Id: Ie72abac83f91e9a047578d0e8334d98a358e2aee --- oox/source/drawingml/textparagraphproperties.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/oox/source/drawingml/textparagraphproperties.cxx b/oox/source/drawingml/textparagraphproperties.cxx index 3a0d67e163d1..fdf78ee4d989 100644 --- a/oox/source/drawingml/textparagraphproperties.cxx +++ b/oox/source/drawingml/textparagraphproperties.cxx @@ -389,6 +389,7 @@ void TextParagraphProperties::apply( const TextParagraphProperties& rSourceProps moParaLeftMargin = rSourceProps.moParaLeftMargin; if ( rSourceProps.moFirstLineIndentation ) moFirstLineIndentation = rSourceProps.moFirstLineIndentation; + mnLevel = rSourceProps.mnLevel; } void TextParagraphProperties::pushToPropSet( const ::oox::core::XmlFilterBase* pFilterBase, -- cgit