29d4ecf323
Reported problem is that nothing happens for paste. Direct cause is that BITMAP is selected as the format, and Excel advertises BITMAP, but when we try to import that, it fails. There are 3 interesting commits in the recent history for this topic: - commitc47db038f9
(fdo#52547 SOT: Prefer embedding image data to embedding linked image., 2014-02-07) was a bugfix due to newer firefox - commit538c13f3d1
(fdo#78801 fdo#52547 Paste preference is image, then html, then text., 2014-05-28) was a regression fix from the previous fix - commita96a7ce51a
(fdo#81835 Don't prefer GDI Metafiles to RTF/HTML, 2014-08-05), was a regression fix from the previous fixes Going back to the original state shows that the Excel -> Writer use-case used to be RTF. Restore the old Excel -> Writer (RTF) behavior by: - going back to the original state, ignoring the enum class conversions - re-fix fdo#52547: prefer bitmap over html, but leave everything else unchanged - fdo#78801 needs no fix in this case - fdo#81835 needs no fix in this case - tdf#115574 selects RTF -> table shows up After all these complications, the actual fix is surprisingly simple. Change-Id: I2d728afa7d1dd7888fa43525366c197d806eea6c Reviewed-on: https://gerrit.libreoffice.org/52120 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
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_CppunitTest_CppunitTest,sot_test_sot))
|
|
|
|
$(eval $(call gb_CppunitTest_add_exception_objects,sot_test_sot, \
|
|
sot/qa/cppunit/test_sot \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_use_libraries,sot_test_sot, \
|
|
comphelper \
|
|
cppu \
|
|
cppuhelper \
|
|
sal \
|
|
sot \
|
|
tl \
|
|
unotest \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_set_include,sot_test_sot,\
|
|
-I$(SRCDIR)/sot/inc \
|
|
$$(INCLUDE) \
|
|
))
|
|
|
|
$(eval $(call gb_CppunitTest_use_sdk_api,sot_test_sot,))
|
|
|
|
$(eval $(call gb_CppunitTest_use_ure,sot_test_sot))
|
|
|
|
$(eval $(call gb_CppunitTest_use_components,sot_test_sot,\
|
|
i18npool/util/i18npool \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|