5a083be344
Regression from commit 4ab658b56f
(RTF
import: implement support for tables inside text frames, 2013-06-16),
the problem was that both the outer "textbox" and the inner "picture
frame" object had a shapeType property, and the properties were stored
in a vector. So by the time RTFSdrImport::initShape() looked up the
shape type for the inner shape, it thought it's not a picture frame,
leading to data loss.
Change-Id: I4a536789371619d1d54afa8c8d41c7d273b0d21b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99111
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
24 lines
724 B
Makefile
24 lines
724 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,writerfilter))
|
|
|
|
$(eval $(call gb_Module_add_targets,writerfilter,\
|
|
CustomTarget_source \
|
|
Library_writerfilter \
|
|
))
|
|
|
|
$(eval $(call gb_Module_add_slowcheck_targets,writerfilter,\
|
|
CppunitTest_writerfilter_filters_test \
|
|
CppunitTest_writerfilter_misc \
|
|
CppunitTest_writerfilter_dmapper \
|
|
CppunitTest_writerfilter_rtftok \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|