desktop/source/lib/init.cxx | 3 +++ sfx2/source/control/unoctitm.cxx | 3 +++ 2 files changed, 6 insertions(+)
New commits: commit b62f9f484a0fc9215e34153daac4a8bdb9698d4b Author: Aron Budea <[email protected]> AuthorDate: Mon Jul 17 03:37:05 2023 +0200 Commit: Aron Budea <[email protected]> CommitDate: Thu Jul 20 12:38:50 2023 +0200 Send Calc pivot table command state changes to LOK Change-Id: I0d9e04b0a0452f66cb9703d9f34fe6cb44d724c5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154506 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Aron Budea <[email protected]> diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 45bd9e608e70..81f797e5f197 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -3588,6 +3588,9 @@ static void doc_iniUnoCommands () OUString(".uno:GroupSparklines"), OUString(".uno:UngroupSparklines"), OUString(".uno:FormatSparklineMenu"), + OUString(".uno:DataDataPilotRun"), + OUString(".uno:RecalcPivotTable"), + OUString(".uno:DeletePivotTable"), OUString(".uno:Protect"), OUString(".uno:UnsetCellsReadOnly"), OUString(".uno:ContentControlProperties"), diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index 99bbc2afa7bf..20de9bb29ad3 100644 --- a/sfx2/source/control/unoctitm.cxx +++ b/sfx2/source/control/unoctitm.cxx @@ -1120,6 +1120,9 @@ static void InterceptLOKStateChangeEvent(sal_uInt16 nSID, SfxViewFrame* pViewFra aEvent.FeatureURL.Path == "GroupSparklines" || aEvent.FeatureURL.Path == "UngroupSparklines" || aEvent.FeatureURL.Path == "FormatSparklineMenu" || + aEvent.FeatureURL.Path == "DataDataPilotRun" || + aEvent.FeatureURL.Path == "RecalcPivotTable" || + aEvent.FeatureURL.Path == "DeletePivotTable" || aEvent.FeatureURL.Path == "NumberFormatDecDecimals" || aEvent.FeatureURL.Path == "NumberFormatIncDecimals" || aEvent.FeatureURL.Path == "Protect" ||
