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

New commits:
commit 366c8a03219524a14efd99472749fe574f33c35e
Author:     Skyler Grey <[email protected]>
AuthorDate: Tue Apr 22 13:59:51 2025 +0000
Commit:     Miklos Vajna <[email protected]>
CommitDate: Thu May 29 19:46:02 2025 +0200

    fix(mobile): Include DialogFactoryServices
    
    Without these, we cannot open any dialogs in the mobile app.
    
    It looks like they were added in I8c199421c66de2dcf339ccc2d5cb9340d3bea914,
    I90dae749f777446f67342d121e4dc29b974cb9b6 and 
I389fcafd80f1a450befbffdc252be497ba20f6d5
    to better support mergelibs, and presumably they were unintentionally
    omitted from the mobile app at that time.
    
    Change-Id: Icf0d48ed40e17cfbcd5c2720432bc15bf7b55e6b
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186013
    Reviewed-by: Miklos Vajna <[email protected]>
    Tested-by: Jenkins

diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index d9f57f2b2c49..50d30be2e2c9 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -655,6 +655,8 @@ calc_constructor_list = [
 # scripting/source/vbaevents/vbaevents.component
     ("ooo_vba_VBAToOOEventDesc_get_implementation", "#if 
HAVE_FEATURE_SCRIPTING"),
     ("ooo_vba_EventListener_get_implementation", "#if HAVE_FEATURE_SCRIPTING"),
+# sc/util/scui.component
+    "com_sun_star_sheet_CreateDialogFactoryService_get_implementation",
     ]
 
 draw_factory_list = [
@@ -712,6 +714,8 @@ draw_constructor_list = [
     ("sdext_PDFIRawAdaptor_Draw_get_implementation", "#if 
HAVE_FEATURE_PDFIMPORT"),
     ("sdext_PDFIRawAdaptor_Impress_get_implementation", "#if 
HAVE_FEATURE_PDFIMPORT"),
     ("sdext_PDFDetector_get_implementation", "#if HAVE_FEATURE_PDFIMPORT"),
+# sd/source/console/presenter.component
+    "com_sun_star_presentation_CreateDialogFactoryService_get_implementation",
     ]
 
 writer_factory_list = [
@@ -738,6 +742,8 @@ writer_constructor_list = [
     "com_sun_star_comp_Writer_WriterFilter_get_implementation",
 # writerperfect/source/writer/wpftwriter.component
     "com_sun_star_comp_Writer_EPUBExportFilter_get_implementation",
+# sw/util/swui.component
+    "com_sun_star_text_DialogFactoryService_get_implementation",
     ]
 
 factory_map = {

Reply via email to