# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 # only, as published by the Free Software Foundation. # # OpenOffice.org is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License version 3 for more details # (a copy is included in the LICENSE file that accompanied this code). # # You should have received a copy of the GNU Lesser General Public License # version 3 along with OpenOffice.org. If not, see # # for a copy of the LGPLv3 License. # #************************************************************************* $(eval $(call gb_Library_Library,spa)) $(eval $(call gb_Library_add_defs,spa,\ -DSPA_DLLIMPLEMENTATION \ )) $(eval $(call gb_Library_add_api,spa,\ udkapi \ offapi \ )) $(eval $(call gb_Library_add_linked_libs,spa,\ svt \ vcl \ utl \ tl \ basegfx \ comphelper \ i18nisolang1 \ cppu \ sal \ $(gb_STDLIBS) \ )) $(eval $(call gb_Library_add_exception_objects,spa,\ padmin/source/adddlg \ padmin/source/cmddlg \ padmin/source/fontentry \ padmin/source/helper \ padmin/source/newppdlg \ padmin/source/padialog \ padmin/source/progress \ padmin/source/prtsetup \ padmin/source/titlectrl \ )) ifneq (,$(filter LINUX DRAGONFLY OPENBSD FREEBSD NETBSD, $(OS))) $(eval $(call gb_Library_add_linked_libs,spa,\ m \ pthread \ )) endif ifeq ($(OS),LINUX) $(eval $(call gb_Library_add_linked_libs,spa,\ dl \ )) endif # vim: set noet sw=4 ts=4: LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sw/source/writerfilter/dmapper/TblStylePrHandler.cxx
AgeCommit message (Collapse)Author
2024-08-22tdf#158556 return 'const Value*' from Sprm::getValueNoel Grandin
instead of cloning a fresh object instance, which is not necessary most of the time Change-Id: I3ee1f5952e01a7c6207213522cac9cabb15246d0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172211 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2024-05-29loplugin:ostr in sw/../writerfilterNoel Grandin
Change-Id: Ib3fe74f1522f3c0a2b203e49b98c10cc825160a4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167737 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2024-04-18move writerfilter inside swNoel Grandin
writerfilter wants to convert incoming RTF and OOXML files into writer's document model. But it currently has to do so by manipulating the limited subset that we expose through the UNO API. This is both slower and less accurate than having access to the full document model. So move it inside, and then we can strip out various hacks, and optimise imports. Change-Id: Ie1114d28130ef5f9a786531bc552cb8ee7768015 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165953 Tested-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>