diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2020-07-03 19:39:03 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-04 08:32:56 +0200 |
commit | 78639945dab254e2de5315c49e82c333e1056170 (patch) | |
tree | c043c0d237ae9257aadfcd755cefc9df0a786208 /solenv/bin/native-code.py | |
parent | 7dcc18b5ac79d9a3e7564492428a275bf9b386db (diff) |
UnoControl: create instances with uno constructors
See tdf#74608 for motivation.
Change-Id: I3df173e3c7064d3d925d3abe5c652b8cbe6c8ea5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97892
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'solenv/bin/native-code.py')
-rwxr-xr-x | solenv/bin/native-code.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py index ec0cd0f75c25..4713dff269e6 100755 --- a/solenv/bin/native-code.py +++ b/solenv/bin/native-code.py @@ -61,7 +61,6 @@ core_factory_list = [ ("libpdffilterlo.a", "pdffilter_component_getFactory"), ("libsvgiolo.a", "svgio_component_getFactory"), ("libsvtlo.a", "svt_component_getFactory"), - ("libctllo.a", "ctl_component_getFactory"), ("libMacOSXSpelllo.a", "MacOSXSpell_component_getFactory", "#ifdef IOS"), ("libcuilo.a", "cui_component_getFactory"), ("libproxyfaclo.a", "proxyfac_component_getFactory"), @@ -71,6 +70,11 @@ core_factory_list = [ ] core_constructor_list = [ +# UnoControls/util/ctl.component + "stardiv_UnoControls_FrameControl_get_implementation", + "stardiv_UnoControls_ProgressBar_get_implementation", + "stardiv_UnoControls_ProgressMonitor_get_implementation", + "stardiv_UnoControls_StatusIndicator_get_implementation", # canvas/source/factory/canvasfactory.component "com_sun_star_comp_rendering_CanvasFactory_get_implementation", # chart2/source/chartcore.component |