diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2020-07-22 14:16:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-23 09:25:36 +0200 |
commit | c049d5336c110196886480330dba9238faee0e39 (patch) | |
tree | cb4bf90927e4076dbb607d9000b86406381010a2 /solenv | |
parent | 7f0fb9a5e7bce720c6fd2d7ddc9fa9dbd353d8a1 (diff) |
scaddins: create instances with uno constructors
See tdf#74608 for motivation.
Change-Id: I678bc7fb73b5863b1656dc7f8b12c5b903c33b3e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99225
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/native-code.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py index 594aea78b724..ace981f71a28 100755 --- a/solenv/bin/native-code.py +++ b/solenv/bin/native-code.py @@ -511,9 +511,6 @@ math_constructor_list = [ calc_factory_list = [ ("libsclo.a", "sc_component_getFactory"), - ("libanalysislo.a", "analysis_component_getFactory"), - ("libdatelo.a", "date_component_getFactory"), - ("libpricinglo.a", "pricing_component_getFactory"), ] calc_constructor_list = [ @@ -527,6 +524,12 @@ calc_constructor_list = [ # sc/util/scfilt.component "com_sun_star_comp_oox_xls_ExcelFilter_get_implementation", "com_sun_star_comp_oox_xls_FormulaParser_get_implementation", +# scaddins/source/analysis/analysis.component + "scaddins_AnalysisAddIn_get_implementation", +# scaddins/source/datefunc/date.component + "scaddins_ScaDateAddIn_get_implementation" +# scaddins/source/pricing/pricing.component + "scaddins_ScaPricingAddIn_get_implementation", # scripting/source/vbaevents/vbaevents.component ("ooo_vba_VBAToOOEventDesc_get_implementation", "#if HAVE_FEATURE_SCRIPTING"), # svl/util/svl.component |