# -*- 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,connectivity_ado)) $(eval $(call gb_CppunitTest_set_include,connectivity_ado,\ -I$(SRCDIR)/connectivity/source/inc \ -I$(SRCDIR)/connectivity/source/drivers/ado \ $$(INCLUDE) \ )) $(eval $(call gb_CppunitTest_use_external,connectivity_ado,boost_headers)) $(eval $(call gb_CppunitTest_use_api,connectivity_ado,\ udkapi \ offapi \ )) $(eval $(call gb_CppunitTest_use_ure,connectivity_ado)) $(eval $(call gb_CppunitTest_use_vcl,connectivity_ado)) $(eval $(call gb_CppunitTest_use_sdk_api,connectivity_ado)) ifeq ($(COM),GCC) $(eval $(call gb_CppunitTest_add_cxxflags,connectivity_ado,\ -fpermissive \ )) endif $(eval $(call gb_CppunitTest_add_exception_objects,connectivity_ado, \ connectivity/qa/connectivity/ado/DriverTest \ )) $(eval $(call gb_CppunitTest_use_libraries,connectivity_ado, \ comphelper \ cppu \ cppuhelper \ dbtools \ i18nlangtag \ ado \ sal \ salhelper \ sb \ test \ unotest \ ucbhelper \ utl \ $(gb_UWINAPI) \ )) $(eval $(call gb_CppunitTest_use_components,connectivity_ado,\ configmgr/source/configmgr \ i18npool/util/i18npool \ connectivity/source/drivers/ado/ado \ ucb/source/core/ucb1 \ ucb/source/ucp/file/ucpfile1 \ )) $(eval $(call gb_CppunitTest_use_configuration,connectivity_ado)) $(call gb_CppunitTest_get_target,connectivity_ado) : $(WORKDIR)/CppunitTest/TS001018407.mdb $(WORKDIR)/CppunitTest/TS001018407.mdb : $(SRCDIR)/connectivity/qa/connectivity/ado/TS001018407.mdb mkdir -p $(dir $@) $(call gb_Deliver_deliver,$<,$@) # vim: set noet sw=4 ts=4: 6-4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/attr.cxx
AgeCommit message (Collapse)Author
2024-05-16loplugin:ostr in unoxmlNoel Grandin
Change-Id: Iffacc269c97371597188254b44623c011d1cf9db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167729 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-11-27tdf#158302 fix build against system-libxml-2.12Miklos Vajna
Seen in a fedora:40 container, using --with-system-libcmis, --with-system-liblangtag and --with-system-xmlsec. Change-Id: I9d748d3dc0b70dbfdfcb6b99c9ce8440bda6f326 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159980 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2023-03-06no need to allocate these separatelyNoel Grandin
they are all one or two words in size Change-Id: I9bbe80a1be4d138f00d864352896d61d0df6366d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148337 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-01-19tdf#153039 unoxml: replace root element of CDocument throwsMichael Stahl
XForms replace doesn't work because: CDocument::IsChildTypeAllowed() tests that the document node does not already have an element child, because only one is allowed - but when called from CNode::replaceChild(), the existing child will be removed, so that needs to be allowed to proceed (check that removed child is also element). (regression from commit c5db3b93ee1058bd20ebcde2e757b52b9a67b74a) Change-Id: I167de3462f4d1934dbf8404ad395349897cfd981 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145757 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2020-01-09tdf#42949 Fix IWYU warnings in unoxml/Gabor Kelemen
Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: I4457153dc4f2bfe932488b1c6e3af3cff58cb150 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85787 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>