[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - solenv/bin

Michael Weghorn (via logerrit) logerrit at kemper.freedesktop.org
Sat May 9 18:11:03 UTC 2020


 solenv/bin/native-code.py |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
commit d5d64ddbb7d94cb312423fe2a33b07a91139c175
Author:     Michael Weghorn <m.weghorn at posteo.de>
AuthorDate: Mon Mar 9 15:36:20 2020 +0100
Commit:     Michael Meeks <michael.meeks at collabora.com>
CommitDate: Sat May 9 19:09:04 2020 +0100

    tdf#128308 liblo-native-code: Add some missing services
    
    Those form-related services are needed to handle the bugdoc and
    another document with form elements that I was given.
    
    'adb logcat' output for a debug build already showed the cause
    of the crashes with messages like:
    
     W cppuhelper: 31:cppuhelper/source/shlib.cxx:288: unknown constructor name "com_sun_star_form_ORadioButtonControl_get_implementation"
    
    Change-Id: I20232e097bedba13b94e3ff01839d55da819e6cf
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90232
    Tested-by: Jenkins
    Reviewed-by: Michael Weghorn <m.weghorn at posteo.de>

diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index 79a0987b5059..84916ce7e207 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -139,6 +139,7 @@ core_constructor_list = [
     ("com_sun_star_comp_forms_FormOperations_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
     ("com_sun_star_comp_forms_ODatabaseForm_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
     ("com_sun_star_comp_forms_OFormattedFieldWrapper_ForcedFormatted_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
+    ("com_sun_star_comp_form_ORichTextControl_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
     ("com_sun_star_comp_forms_ORichTextModel_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
     ("com_sun_star_comp_forms_OScrollBarModel_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
     ("com_sun_star_comp_forms_OSpinButtonModel_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
@@ -157,8 +158,10 @@ core_constructor_list = [
     ("com_sun_star_form_OFormsCollection_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
     ("com_sun_star_form_OGridControlModel_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
     ("com_sun_star_form_OGroupBoxModel_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
+    ("com_sun_star_form_OListBoxControl_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
     ("com_sun_star_form_OListBoxModel_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
     ("com_sun_star_form_ONumericModel_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
+    ("com_sun_star_form_ORadioButtonControl_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
     ("com_sun_star_form_ORadioButtonModel_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
     ("com_sun_star_form_XForms_get_implementation", "#if HAVE_FEATURE_DBCONNECTIVITY"),
 # framework/util/fwk.component
@@ -266,6 +269,8 @@ core_constructor_list = [
     "stardiv_Toolkit_UnoControlRadioButtonModel_get_implementation",
     "stardiv_Toolkit_UnoControlScrollBarModel_get_implementation",
     "stardiv_Toolkit_UnoDateFieldControl_get_implementation",
+    "stardiv_Toolkit_UnoListBoxControl_get_implementation",
+    "stardiv_Toolkit_UnoRadioButtonControl_get_implementation",
     "stardiv_Toolkit_UnoSpinButtonModel_get_implementation",
     "stardiv_Toolkit_VCLXPointer_get_implementation",
     "stardiv_Toolkit_VCLXPopupMenu_get_implementation",


More information about the Libreoffice-commits mailing list