summaryrefslogtreecommitdiff
path: root/javaunohelper/Library_juhx.mk
blob: 6eacff250c0f831a77efb64647dd8f7f8ae1eab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- 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_Library_Library,juhx))

$(eval $(call gb_Library_use_internal_comprehensive_api,juhx,\
    udkapi \
))

$(eval $(call gb_Library_use_libraries,juhx,\
    cppu \
    cppuhelper \
    jvmaccess \
    sal \
    salhelper \
    tl \
))

$(eval $(call gb_Library_add_exception_objects,juhx,\
    javaunohelper/source/bootstrap \
    javaunohelper/source/javaunohelper \
    javaunohelper/source/vm \
))

# vim:set noet sw=4 ts=4:
se?id=e89e8941e114d4d1adf76df995a3f1a8d1bff4b1'>e89e8941e114d4d1adf76df995a3f1a8d1bff4b1 (diff)
tdf#119235 svx,sd: fix drag&drop from ColorBar
This was using the SfxPoolItem serialisation of XATTR_FILL* items, where only XFillColorItem and XFillStyleItem were actually used; the binary serialisation was removed without being aware of this feature. Fix this by using uno::Any instead, rather than reviving the binary serialisation. Also change the clipboard format strings, just to be safe. (regression from 97b889b8b2b2554ce33fd6b3f0359fc18f39832d) Change-Id: I1828621a9aae606a1ca47835eef608062efe64a0 Reviewed-on: https://gerrit.libreoffice.org/62455 Reviewed-by: Michael Stahl <Michael.Stahl@cib.de> Tested-by: Michael Stahl <Michael.Stahl@cib.de>