diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2015-11-05 23:47:38 +0100 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2015-11-08 19:39:13 +0100 |
commit | da82d5076ba9fa0cb802a6c84bed939c14b0cf57 (patch) | |
tree | b0dca52960467e3c061e889e18133019e1400636 | |
parent | b409cd73a9b68d498c7d3de81013d2cbd8331243 (diff) |
pptx: fix export of newsflash transition
Change-Id: I0e34e1b8860b9142d3171246d41bb528e710d10c
-rw-r--r-- | oox/source/ppt/slidetransition.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/oox/source/ppt/slidetransition.cxx b/oox/source/ppt/slidetransition.cxx index 754082dd0dfc..e4950c419edf 100644 --- a/oox/source/ppt/slidetransition.cxx +++ b/oox/source/ppt/slidetransition.cxx @@ -381,9 +381,8 @@ namespace oox { namespace ppt { mnTransitionSubType = TransitionSubType::DEFAULT; break; case PPT_TOKEN( newsflash ): - // this is what the PPT binary filter does.... not sure I agree. - mnTransitionType = TransitionType::FOURBOXWIPE; - mnTransitionSubType = TransitionSubType::CORNERSOUT; + mnTransitionType = TransitionType::ZOOM; + mnTransitionSubType = TransitionSubType::ROTATEIN; break; case PPT_TOKEN( plus ): mnTransitionType = TransitionType::FOURBOXWIPE; |