# -*- 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_JunitTest_JunitTest,jurt_uno)) $(eval $(call gb_JunitTest_use_jars,jurt_uno,\ OOoRunner \ ridl \ )) $(eval $(call gb_JunitTest_use_jar_classset,jurt_uno,jurt)) $(eval $(call gb_JunitTest_add_sourcefiles,jurt_uno,\ jurt/test/com/sun/star/uno/AnyConverter_Test \ jurt/test/com/sun/star/uno/UnoRuntime_EnvironmentTest \ jurt/test/com/sun/star/uno/WeakReference_Test \ )) $(eval $(call gb_JunitTest_add_classes,jurt_uno,\ com.sun.star.uno.AnyConverter_Test \ com.sun.star.uno.UnoRuntime_EnvironmentTest \ com.sun.star.uno.WeakReference_Test \ )) # vim:set noet sw=4 ts=4: allotropia/zeta-24-2'>distro/allotropia/zeta-24-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-03-18 16:11:05 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2017-03-18 08:02:26 +0000
commit5ec1713ae5b177ae32970c7209cea55ee0041c5c (patch)
treec1322d5fd439f9305dafe8dd4f790e7db2ead3ef /editeng
parent1e7d1f27217c0fe33009552bd6a0bc6523f821ed (diff)
vcl: have SolarThreadExecutor use osl::Condition, not oslCondition
Condition is deprecated already, but there is no need for the SolarThreadExecutor class to use the low-level C-API, when in fact there is a C++ fascade that calls on this via the C++ abstraction, osl::Condition. This will make it much easier to switch to using std::condition_variable in the future. Change-Id: I81e8530d42fe1451c4ca5bce998b13de0576bc4e Reviewed-on: https://gerrit.libreoffice.org/35386 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>