diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-08 09:50:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-08 20:26:28 +0200 |
commit | f4fc5dc31eeb728777104c9ece2788bcc4bdea89 (patch) | |
tree | 3d2be4743ac960bd6c5677e85e44b2e4ef284a07 /solenv | |
parent | d29a314300d523d29ed894f1822227497fcb68f8 (diff) |
unoxml: create instances with uno constructors
See tdf#74608 for motivation
Change-Id: I636d92faa3b26ac06c044c0485e632967daa709c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98313
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/native-code.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py index b1bfc8903107..32972c8a7fae 100755 --- a/solenv/bin/native-code.py +++ b/solenv/bin/native-code.py @@ -40,8 +40,6 @@ core_factory_list = [ ("libucpfile1.a", "ucpfile_component_getFactory"), ("libucphier1.a", "ucphier1_component_getFactory"), ("libucptdoc1lo.a", "ucptdoc1_component_getFactory"), - ("libunordflo.a", "unordf_component_getFactory"), - ("libunoxmllo.a", "unoxml_component_getFactory"), ("libutllo.a", "utl_component_getFactory"), ("libxstor.a", "xstor_component_getFactory"), ("libxmlfdlo.a", "xmlfd_component_getFactory"), @@ -308,6 +306,15 @@ core_constructor_list = [ "stardiv_Toolkit_VCLXPointer_get_implementation", "stardiv_Toolkit_VCLXPopupMenu_get_implementation", "stardiv_Toolkit_VCLXToolkit_get_implementation", +# unoxml/source/rdf/unordf.component + "unoxml_rdfRepository_get_implementation", + "unoxml_CURI_get_implementation", + "unoxml_CLiteral_get_implementation", + "unoxml_CBlankNode_get_implementation", +# unoxml/source/service/unoxml.component + "unoxml_CXPathAPI_get_implementation", + "unoxml_CSAXDocumentBuilder_get_implementation", + "unoxml_CDocumentBuilder_get_implementation", # uui/util/uui.component "com_sun_star_comp_uui_UUIInteractionHandler_get_implementation", "com_sun_star_comp_uui_UUIInteractionRequestStringResolver_get_implementation", |