diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2021-01-26 17:38:23 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-01-26 21:15:24 +0100 |
commit | 1093c931e9e4c86a47ea5972217719d5fa169b71 (patch) | |
tree | 39ebdf2935096d725f2c0712fd4ac03bfc530601 /include/oox | |
parent | bbce1482f161e6e7562fad39897a04454e1c726b (diff) |
[API CHANGE] PPTX filter: fix lost hide-while-show prop for slide narrations
The OOXML markup is <p:cMediaNode ... showWhenStopped="0">, but the UI
uses "Hide During Show", which is easier to understand, so use the
second naming in the code.
With this, the PPTX no longer makes the speaker bitmaps on slides
visible while projecting.
API change, because the animation node is only available via UNO, though
it's likely that no actual external code would ever interact with it
directly. (And also add a stub Narration attribute, so that can be
implemented in a follow-up commit without an API change.)
Change-Id: Ia90a2fb30c2bfdb4cff2901fe11bdf1d4ab38261
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109969
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/ppt/animationspersist.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/oox/ppt/animationspersist.hxx b/include/oox/ppt/animationspersist.hxx index 0dcf0dc0662a..f2288929ad6e 100644 --- a/include/oox/ppt/animationspersist.hxx +++ b/include/oox/ppt/animationspersist.hxx @@ -43,6 +43,7 @@ namespace oox::ppt { NP_ENDSYNC, NP_ITERATETYPE, NP_ITERATEINTERVAL, NP_SUBITEM, NP_TARGET, NP_COMMAND, NP_PARAMETER, NP_VALUES, NP_FORMULA, NP_KEYTIMES, NP_DISPLAY, + NP_HIDEDURINGSHOW, NP_SIZE_ }; |