summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorPriyankaGaikwad <priyanka.gaikwad@synerzip.com>2015-03-17 16:20:29 +0530
committerDavid Tardon <dtardon@redhat.com>2015-03-20 08:24:26 +0000
commita7b611e8fb62d6e93844e5e7b9f1f00adb4afeea (patch)
tree79dc449ee637cb6973d21069b54d820d4ca43f4a /oox
parent63442ec636d637e05d7d585817df531dbbeb96d9 (diff)
tdf#83889:FILEOPEN:PPTX bullet point is followed by spurious symbol
If we have first numeric bullet and then insert any symbol bullet on same level then suffix of numeric bullet continues with symbol bullet as well. Solution : Reset suffix to none if it is symbol bullet. Change-Id: I06dddec55c6f3d8cc1545d30f7228ca08cb81396 Reviewed-on: https://gerrit.libreoffice.org/14890 Tested-by: Jenkins <ci@libreoffice.org> Tested-by: David Tardon <dtardon@redhat.com> Reviewed-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/textparagraphpropertiescontext.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/oox/source/drawingml/textparagraphpropertiescontext.cxx b/oox/source/drawingml/textparagraphpropertiescontext.cxx
index 06c6625bd178..a79cfe0287b2 100644
--- a/oox/source/drawingml/textparagraphpropertiescontext.cxx
+++ b/oox/source/drawingml/textparagraphpropertiescontext.cxx
@@ -225,7 +225,9 @@ ContextHandlerRef TextParagraphPropertiesContext::onCreateContext( sal_Int32 aEl
}
case A_TOKEN( buChar ): // CT_TextCharBullet
try {
+
mrBulletList.setBulletChar( rAttribs.getString( XML_char ).get() );
+ mrBulletList.setSuffixNone();
}
catch(SAXException& /* e */)
{