vcl/jsdialog/enabled.cxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit 7f96c31000dcbadf6f045cd09c43629a0663eec8
Author: Caolán McNamara <[email protected]>
AuthorDate: Fri Feb 6 16:56:30 2026 +0000
Commit: Caolán McNamara <[email protected]>
CommitDate: Tue Feb 24 09:22:34 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]>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/200114
Reviewed-by: Caolán McNamara <[email protected]>
diff --git a/vcl/jsdialog/enabled.cxx b/vcl/jsdialog/enabled.cxx
index 766cadf80ad7..e530c000dab3 100644
--- a/vcl/jsdialog/enabled.cxx
+++ b/vcl/jsdialog/enabled.cxx
@@ -688,6 +688,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);