summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-10-24 09:01:24 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2017-11-02 21:48:29 +0100
commit208f2b1b30934fa36140260a22fc8c3977eb5a85 (patch)
tree2a7060e3c4a7a3416e0863d94ca9b0f49705ca44
parentae039c48cc611e7498e2b781003287cd939fcd5f (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> (cherry picked from commit f99767d532dbe2741cb9cccf26db3547cc5e14df) Reviewed-on: https://gerrit.libreoffice.org/43743 Reviewed-by: Michael Stahl <mstahl@redhat.com> (cherry picked from commit ba0909f83e65ec953ba517f09c06053709fbb523) Reviewed-on: https://gerrit.libreoffice.org/43774 Tested-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
-rw-r--r--sd/source/filter/eppt/pptx-text.cxx5
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 0cdf747dce6e..f84f1550809a 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;
}
}
}