# -*- 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,sc_indexenumeration_namedrangesenumeration)) $(eval $(call gb_CppunitTest_use_external,sc_indexenumeration_namedrangesenumeration,boost_headers)) $(eval $(call gb_CppunitTest_add_exception_objects,sc_indexenumeration_namedrangesenumeration, \ sc/qa/extras/scindexenumeration_namedrangesenumeration \ )) $(eval $(call gb_CppunitTest_use_libraries,sc_indexenumeration_namedrangesenumeration, \ cppu \ sal \ subsequenttest \ test \ unotest \ )) $(eval $(call gb_CppunitTest_set_include,sc_indexenumeration_namedrangesenumeration,\ $$(INCLUDE) \ )) $(eval $(call gb_CppunitTest_use_sdk_api,sc_indexenumeration_namedrangesenumeration)) $(eval $(call gb_CppunitTest_use_ure,sc_indexenumeration_namedrangesenumeration)) $(eval $(call gb_CppunitTest_use_vcl,sc_indexenumeration_namedrangesenumeration)) $(eval $(call gb_CppunitTest_use_components,sc_indexenumeration_namedrangesenumeration,\ $(sc_unoapi_common_components) \ )) $(eval $(call gb_CppunitTest_use_configuration,sc_indexenumeration_namedrangesenumeration)) # vim: set noet sw=4 ts=4: distro/cib/libreoffice-5-4'>distro/cib/libreoffice-5-4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/include/svx/rulritem.hxx
AgeCommit message (Collapse)Author
2017-08-08loplugin:unusedmethodsNoel Grandin
Change-Id: Id66cf12e3a59aeed1b9a7a111b841e30b248635b Reviewed-on: https://gerrit.libreoffice.org/40876 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2017-07-31make IntlWrapper arg to GetPresentation non-implicit and non-optionalCaolán McNamara
which requires explicitly adding null in 1) SdrItemBrowserControl::SetAttributes(const SfxItemSet* pSet, const SfxItemSet* p2ndSet) where SdrItemBrowserControl is only used by SdrItemBrowser and the only use of that is within DBG_UTIL in SdrPaintView 2) SwCursorShell::GetContentAtPos( const Point& rPt, within a #ifdef DBG_UTIL block in 3) SvxSearchDialog::BuildAttrText_Impl( OUString& rStr, bool bSrchFlag ) const where the other branch uses SvxResId 4) SfxPoolItem::dumpAsXml(xmlTextWriterPtr pWriter) const 5) XFillStyleItem::dumpAsXml(xmlTextWriterPtr pWriter) const looks very much like all uses (outside the dumpers) are intended to be in the ui locale results in that INetContentTypes::GetPresentation always called with UI Locale Change-Id: I5a110c107838b4db3c355476426d6532f2b6ce52 Reviewed-on: https://gerrit.libreoffice.org/40538 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>