summaryrefslogtreecommitdiff
path: root/solenv/bin/native-code.py
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-07-14 10:16:47 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-07-14 12:04:06 +0200
commit3fbadfa1ad41a3477804c592e06caec708c05218 (patch)
treee070ddf4fb572c16d07a0afcebffd28b8987c2e6 /solenv/bin/native-code.py
parentc6642e6c2366741eba893f2e91a6bc2761df7c35 (diff)
lingucomponent: create instances with uno constructors
See tdf#74608 for motivation. Change-Id: I11770c8873d14cfd0e438fb580d8d0ea9e99f594 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98709 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'solenv/bin/native-code.py')
-rwxr-xr-xsolenv/bin/native-code.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index d310cbdb2811..e219a11b8355 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -23,10 +23,8 @@ core_factory_list = [
("libembobj.a", "embobj_component_getFactory"),
("libfilterconfiglo.a", "filterconfig1_component_getFactory"),
("libfsstoragelo.a", "fsstorage_component_getFactory"),
- ("libhyphenlo.a", "hyphen_component_getFactory"),
("libi18npoollo.a", "i18npool_component_getFactory"),
("libinvocadaptlo.a", "invocadapt_component_getFactory"),
- ("liblnthlo.a", "lnth_component_getFactory", "#ifndef IOS"),
("liblocalebe1lo.a", "localebe1_component_getFactory"),
("libpackage2.a", "package2_component_getFactory"),
("libsmlo.a", "sm_component_getFactory"),
@@ -38,11 +36,9 @@ core_factory_list = [
("libxstor.a", "xstor_component_getFactory"),
("libodfflatxmllo.a", "odfflatxml_component_getFactory"),
("libvcllo.a", "vcl_component_getFactory"),
- ("libspelllo.a", "spell_component_getFactory", "#ifndef IOS"),
("libsvtlo.a", "svt_component_getFactory"),
("libMacOSXSpelllo.a", "MacOSXSpell_component_getFactory", "#ifdef IOS"),
("libproxyfaclo.a", "proxyfac_component_getFactory"),
- ("libguesslanglo.a", "guesslang_component_getFactory"),
("libbiblo.a", "bib_component_getFactory"),
]
@@ -241,12 +237,17 @@ core_constructor_list = [
"com_sun_star_text_DefaultNumberingProvider_get_implementation",
# i18nsearch/sourceh/search/i18nsearch.component
"i18npool_TextSearch_get_implementation",
-# linguistc/source/lng.component
+# linguistic/source/lng.component
"linguistic_ConvDicList_get_implementation",
"linguistic_DicList_get_implementation",
"linguistic_LinguProps_get_implementation",
"linguistic_LngSvcMgr_get_implementation",
"linguistic_GrammarCheckingIterator_get_implementation",
+# lingucomponent/source/thesaurus/libnth/lnth.component
+ ("lingucomponent_Thesaurus_get_implementation", "#ifndef IOS"),
+ ("lingucomponent_SpellChecker_get_implementation", "#ifndef IOS"),
+ "lingucomponent_LangGuess_get_implementation",
+ "lingucomponent_Hyphenator_get_implementation",
# sax/source/expatwrap/expwrap.component
"com_sun_star_comp_extensions_xml_sax_FastParser_get_implementation",
"com_sun_star_comp_extensions_xml_sax_ParserExpat_get_implementation",