diff options
author | Henry Castro <hcastro@collabora.com> | 2020-10-15 16:10:31 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2021-01-18 19:25:50 +0100 |
commit | 7ca75d8227205defb2a3dea6223be4eec15ee2e3 (patch) | |
tree | 09302e9eb735f0ac075b6b622212b0608326fb24 | |
parent | df9b4e139fecea3a23b0d0742d8a166ff61a863d (diff) |
lok: initialize to dispatch ".uno:RunMacro" command
The ".uno:RunMacro" command it is needed for
client side to show the Macro Selector Dialog.
Change-Id: I8f01b9f5cc985119c9215734a6484ed7a0e30080
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107886
Tested-by: Jenkins
Reviewed-by: Henry Castro <hcastro@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109132
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
-rw-r--r-- | desktop/source/lib/init.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index af1161274c37..82b1bfb79a7d 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -2833,7 +2833,8 @@ static void doc_iniUnoCommands () OUString(".uno:FreezePanesColumn"), OUString(".uno:FreezePanesRow"), OUString(".uno:Sidebar"), - OUString(".uno:SheetRightToLeft") + OUString(".uno:SheetRightToLeft"), + OUString(".uno:RunMacro") }; util::URL aCommandURL; |