diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2020-04-20 12:16:39 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-04-24 10:03:27 +0200 |
commit | 7e82d7bf88f63b1dcd9da939904330054fc426f6 (patch) | |
tree | 390ab71114ffe0b2f8bce9c97c9212fbc47ab9ed /oox | |
parent | be23b4a91504b81a19510f8562e92203b4317edf (diff) |
Related tdf#111461: ignore picLocks attribute
If we ignore "nvPicPr", we can't take "picLocks" into account
since this tag is used inside "nvPicPr"
It allows to avoid this log:
warn:oox:24274:24274:oox/source/drawingml/shapecontext.cxx:125: ShapeContext::onCreateContext: unhandled element: 3974
Change-Id: Icba7a732f59cf5f3ea587bc23c27cec7a10367c9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92556
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/shapecontext.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oox/source/drawingml/shapecontext.cxx b/oox/source/drawingml/shapecontext.cxx index c6ee29a9f89e..b4c284a03edd 100644 --- a/oox/source/drawingml/shapecontext.cxx +++ b/oox/source/drawingml/shapecontext.cxx @@ -116,6 +116,7 @@ ContextHandlerRef ShapeContext::onCreateContext( sal_Int32 aElementToken, const case XML_cNvPicPr: break; case XML_nvPicPr: + case XML_picLocks: break; case XML_relIds: break; |