office-gobmx/embeddedobj/Library_embobj.mk
Caolán McNamara 90ac4671c1 make IntlWrapper arg to GetPresentation non-implicit and non-optional
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>
2017-07-31 22:00:27 +02:00

51 lines
1.4 KiB
Makefile

# -*- 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_Library_Library,embobj))
$(eval $(call gb_Library_set_componentfile,embobj,embeddedobj/util/embobj))
$(eval $(call gb_Library_set_include,embobj,\
-I$(SRCDIR)/embeddedobj/source/inc \
$$(INCLUDE) \
))
$(eval $(call gb_Library_use_external,embobj,boost_headers))
$(eval $(call gb_Library_use_sdk_api,embobj))
$(eval $(call gb_Library_use_libraries,embobj,\
comphelper \
cppu \
cppuhelper \
sal \
svt \
utl \
vcl \
tl \
i18nlangtag \
))
$(eval $(call gb_Library_add_exception_objects,embobj,\
embeddedobj/source/commonembedding/embedobj \
embeddedobj/source/commonembedding/inplaceobj \
embeddedobj/source/commonembedding/miscobj \
embeddedobj/source/commonembedding/persistence \
embeddedobj/source/commonembedding/register \
embeddedobj/source/commonembedding/specialobject \
embeddedobj/source/commonembedding/visobj \
embeddedobj/source/commonembedding/xfactory \
embeddedobj/source/general/docholder \
embeddedobj/source/general/dummyobject \
embeddedobj/source/general/intercept \
embeddedobj/source/general/xcreator \
))
# vim: set noet sw=4 ts=4: