# -*- 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,embedserv)) ifeq ($(OS),WNT) $(eval $(call gb_Module_add_targets,embedserv,\ $(if $(filter WNT-TRUE,$(OS)-$(DISABLE_ATL)),,Library_inprocserv) \ )) ifeq ($(DISABLE_ATL),) $(eval $(call gb_Module_add_targets,embedserv,\ Library_emser \ )) endif endif # vim: set noet sw=4 ts=4: 'id' value='3d2be5bc0d0679bf12c1578de01e5bf80cc54419'/> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/desktop/test
ImageResolver.cxx?id=d526bd7dd5b94be6fe5a823372da1facca3d43fa'>Fix StringAdd::isCompileTimeConstant
AgeCommit message (Expand)Author
2018-12-14Fix Extension_test-{active,passive}Stephan Bergmann
2018-10-24remove more rtl::OUString and OString prefixesNoel Grandin
2018-09-20Replace SAL_OVERRIDE with override in internal codeStephan Bergmann
2018-06-13Add some help content to test-passive.oxtStephan Bergmann
2018-02-13loplugin:salcall (Extension_test-{active,passive})Stephan Bergmann
2018-02-13Fix !LIBO_INTERNAL_ONLY code (Extension_test-active)Stephan Bergmann
2017-10-04add << operator for css::uno::ExceptionNoel Grandin
2017-03-25Fix typosAndrea Gelmini
2017-03-03Fix typosAndrea Gelmini
2017-01-27Remove dynamic exception specifications from !LIBO_INTERNAL_ONLYStephan Bergmann
2016-11-16Demonstrate that (extension) .xcu can contain <item> with nested <node>sStephan Bergmann
Stephan Bergmann
...to find StringLiteral on the RHS of +=. Which revealed that the VisitCompoundStmt/checkForCompoundAssign logic needed to be fixed, too, so that s += side_effect(); s += "literal"; s += side_effect(); only gets combined to s += side_effect() + "literal"; s += side_effect(); and not all the way to s += side_effect() + "literal" + side_effect(); Change-Id: I432e3458b933a7d0ad6141c747b675cc8b0f0ba4 Reviewed-on: https://gerrit.libreoffice.org/81804 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-10-26size some stringbuffer to prevent re-allocNoel Grandin
I started with 32 and kept doubling the size until the site did not need re-alloc, but clamped it at 512 (e.g. in emfio/). Change-Id: Ib7caf35a1b7e42b0e4ed8aa812493449e3eefc8f Reviewed-on: https://gerrit.libreoffice.org/81540 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>