vcl/jsdialog/enabled.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 07f8af92189cbd656acc8572c642f1a6cddc9434
Author:     Caolán McNamara <[email protected]>
AuthorDate: Fri Feb 6 16:56:30 2026 +0000
Commit:     Miklos Vajna <[email protected]>
CommitDate: Mon Feb 9 10:12:18 2026 +0100

    calc ungroup dialog is disabled in kit mode
    
    Change-Id: I3f0095f2924fbc1aeb2fa077cff462630c85e063
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198859
    Reviewed-by: Miklos Vajna <[email protected]>
    Tested-by: Jenkins CollaboraOffice <[email protected]>

diff --git a/vcl/jsdialog/enabled.cxx b/vcl/jsdialog/enabled.cxx
index dbf09fd6a435..fdc5912dc9a5 100644
--- a/vcl/jsdialog/enabled.cxx
+++ b/vcl/jsdialog/enabled.cxx
@@ -691,6 +691,10 @@ std::vector<OUString> completeCalcDialogList(const 
o3tl::sorted_vector<OUString>
     std::vector<OUString> missing;
     for (const auto& entry : ScalcDialogList)
     {
+        // Skip this one, its marked in calc as: "TODO: handle this case in 
LOK too"
+        // for SID_OUTLINE_REMOVE
+        if (entry == u"modules/scalc/ui/ungroupdialog.ui")
+            continue;
         OUString sEntry(entry);
         if (!entries.contains(sEntry))
             missing.push_back(sEntry);

Reply via email to