From 63abdec59d2fc23c988cb7c160bd4625e7e464a9 Mon Sep 17 00:00:00 2001 From: Szymon Kłos Date: Tue, 5 Apr 2022 19:07:26 +0200 Subject: lok: send status update for .uno:SplitCell MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ic972d3ff3334f4c3a507868a95ac955c9ffbc614 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132585 Reviewed-by: Mert Tumer Tested-by: Jenkins CollaboraOffice Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132871 Tested-by: Jenkins Reviewed-by: Szymon Kłos --- desktop/source/lib/init.cxx | 1 + sfx2/source/control/unoctitm.cxx | 1 + 2 files changed, 2 insertions(+) diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index dd9c3874b93c..d8e0ca6c95ee 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -3109,6 +3109,7 @@ static void doc_iniUnoCommands () OUString(".uno:InsertCaptionDialog"), OUString(".uno:FormatGroup"), OUString(".uno:SplitTable"), + OUString(".uno:SplitCell"), OUString(".uno:MergeCells"), OUString(".uno:DeleteNote"), OUString(".uno:AcceptChanges"), diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index dde7c4cc6e6b..3ea0a1f9e397 100644 --- a/sfx2/source/control/unoctitm.cxx +++ b/sfx2/source/control/unoctitm.cxx @@ -1053,6 +1053,7 @@ static void InterceptLOKStateChangeEvent(sal_uInt16 nSID, SfxViewFrame* pViewFra aEvent.FeatureURL.Path == "InsertCaptionDialog" || aEvent.FeatureURL.Path == "MergeCells" || aEvent.FeatureURL.Path == "SplitTable" || + aEvent.FeatureURL.Path == "SplitCell" || aEvent.FeatureURL.Path == "DeleteNote" || aEvent.FeatureURL.Path == "AcceptChanges" || aEvent.FeatureURL.Path == "SetDefault" || -- cgit