# -*- 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,vcl_fontmetric)) $(eval $(call gb_CppunitTest_set_include,vcl_fontmetric,\ $$(INCLUDE) \ -I$(SRCDIR)/vcl/inc \ )) $(eval $(call gb_CppunitTest_add_exception_objects,vcl_fontmetric, \ vcl/qa/cppunit/fontmetric \ )) $(eval $(call gb_CppunitTest_use_externals,vcl_fontmetric,boost_headers)) $(eval $(call gb_CppunitTest_use_libraries,vcl_fontmetric, \ comphelper \ cppu \ cppuhelper \ sal \ svt \ test \ tl \ tk \ unotest \ vcl \ )) $(eval $(call gb_CppunitTest_use_sdk_api,vcl_fontmetric)) $(eval $(call gb_CppunitTest_use_ure,vcl_fontmetric)) $(eval $(call gb_CppunitTest_use_vcl,vcl_fontmetric)) $(eval $(call gb_CppunitTest_use_components,vcl_fontmetric,\ configmgr/source/configmgr \ i18npool/util/i18npool \ ucb/source/core/ucb1 \ )) $(eval $(call gb_CppunitTest_use_configuration,vcl_fontmetric)) $(eval $(call gb_CppunitTest_use_externals,vcl_fontmetric,\ harfbuzz \ )) $(eval $(call gb_CppunitTest_use_more_fonts,vcl_fontmetric)) # vim: set noet sw=4 ts=4: -5-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-19 10:49:42 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-19 11:04:16 +0200
commit153ea761e32238d1dd882823cf27da1b11c4d66a (patch)
tree3c0b531049e3071b25d47bc76ece73560c246646 /lotuswordpro
parent4dd62d9cc3cb8d79694cb5c1ba09ccf730d211a5 (diff)
Consistently represent bullet char as OUString
(One difference is that for an XFListLevelBullet for which SetBulletChar has not been called, ToXml will use an empty string now instead of a string containing a single NUL character. But given that initializing m_chBullet to zero in the XFListLevelBullet ctor was only added recently with 72069675955aaf0b72a7842453347e3e7293f56d "coverity#738770: Unitialized scalar field," assume that ToXml is supposed to be only called after SetBulletChar has been called.) Change-Id: I7a5d7496b038cd094ab11ef8cbc1823ffc5bc130