diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-24 09:01:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-24 11:27:38 +0200 |
commit | f99767d532dbe2741cb9cccf26db3547cc5e14df (patch) | |
tree | aa864f9dcacef1c4f9cb0cc5bdb3a33cfe9fda7d | |
parent | f8b5ecc622e2b3e82576b27bf0ded9c8eac21cae (diff) |
tdf#113227 FILESAVE: PPT: bullets disappear after RT
regression from
commit afa675469cd9894f41a6b9eeb2e7acc8245d256c
use SvxExtNumType in SvxNumberType
where I managed to put a "default: break" statement in the wrong place
Change-Id: Ic821a03208a75363c538c4641077b084f1e2d242
Reviewed-on: https://gerrit.libreoffice.org/43737
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | sd/source/filter/eppt/pptx-text.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sd/source/filter/eppt/pptx-text.cxx b/sd/source/filter/eppt/pptx-text.cxx index ef33e80f6092..857910a11333 100644 --- a/sd/source/filter/eppt/pptx-text.cxx +++ b/sd/source/filter/eppt/pptx-text.cxx @@ -1076,14 +1076,15 @@ void ParagraphObj::ImplGetNumberingLevel( PPTExBulletProvider* pBuProv, sal_Int1 default: break; } - break; - default: break; } nParaFlags |= 0x2f; nBulletFlags |= 6; if ( mbIsBullet && bNumberingIsNumber ) nBulletFlags |= 1; + break; } + default: + break; } } } |