diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2016-03-22 23:40:19 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2016-03-22 23:46:20 +0100 |
commit | 524df0cc563bfe9e22c505d369c12303e2273df7 (patch) | |
tree | 62ec2d3edc1abb014d807c00e16d8da94b70c210 /solenv | |
parent | 50f7123962ee31a1aefece81c91864460a29493e (diff) |
android: add constructor functions that fell victim to tdf#74608
various changes to add constructor functions for UNO component
implementations (see tdf#74608) caused those to be "invisible" to the
android viewer, as solenv/bin/native-code.py determines what's available
in the android lib.
This change adds back the nimimal required ones to allow opening (basic)
documents again.
Change-Id: I8e6ef6d42dd566f94c5133bab1d6e5d6f465e118
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/native-code.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py index 99a3a4c21f00..e0899f43fd46 100755 --- a/solenv/bin/native-code.py +++ b/solenv/bin/native-code.py @@ -100,6 +100,11 @@ core_constructor_list = [ # chart2/source/controller/chartcontroller.component "com_sun_star_comp_chart2_ChartDocumentWrapper_get_implementation", "com_sun_star_comp_chart2_ChartFrameLoader_get_implementation", +# comphelper/util/comphelp.component + "com_sun_star_comp_logging_SimpleLogRing", + "com_sun_star_comp_task_OfficeRestartManager", + "IndexedPropertyValuesContainer_get_implementation", + "NamedPropertyValuesContainer_get_implementation", # dbaccess/util/dba.component "com_sun_star_comp_dba_ORowSet_get_implementation", # forms/util/frm.component |