5960c6f4ca
Commit 3272c1eb55
(related tdf#100074:
prepare group shapes text input via writerfilter, 2018-10-01) tweaked
the oox code, so that later it'll be able to call back to writerfilter
to parse group shape text. That makes sense, but it also removed the
reset of the group shape context, which means that two subsequent group
shapes are now imported as a single group shape with a merged child
list.
Reset the group shape context again when writerfilter asks for the
XShape from oox. If this causes a problem for the above scenario later,
then it could be considered to handle this in
ShapeContextHandler::endFastElement().
Change-Id: I14f7f0bab2c66c8430313d5b2daffe3160a58c27
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86712
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
34 lines
872 B
Makefile
34 lines
872 B
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
$(eval $(call gb_Module_Module,oox))
|
|
|
|
$(eval $(call gb_Module_add_targets,oox,\
|
|
CustomTarget_generated \
|
|
Library_oox \
|
|
Package_customshapes \
|
|
Package_generated \
|
|
))
|
|
|
|
$(eval $(call gb_Module_add_l10n_targets,oox,\
|
|
AllLangMoTarget_oox \
|
|
))
|
|
|
|
$(eval $(call gb_Module_add_check_targets,oox,\
|
|
CppunitTest_oox_tokenmap \
|
|
CppunitTest_oox_vba_compression \
|
|
CppunitTest_oox_vba_encryption \
|
|
CppunitTest_oox_crypto \
|
|
CppunitTest_oox_mathml \
|
|
CppunitTest_oox_drawingml \
|
|
CppunitTest_oox_vml \
|
|
CppunitTest_oox_shape \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|