diff options
author | Henry Castro <hcastro@collabora.com> | 2021-03-01 10:25:09 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2021-04-06 20:30:16 +0200 |
commit | b9554a6b20e248c5799a04232545709a77f6ad58 (patch) | |
tree | cf7255ec8e0b97784f453f938e893a906d25ddc6 /desktop | |
parent | 6af317bb64bdfa8a36dd4b3734dd882e853f748a (diff) |
lok: disable macro execution
Change-Id: I97a1fd7992d6be57e54c186045e62c3402b99375
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111752
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113685
Tested-by: Jenkins
Reviewed-by: Henry Castro <hcastro@collabora.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/init.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 0112f503cc65..cba9af2b947c 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -2265,7 +2265,7 @@ static LibreOfficeKitDocument* lo_documentLoadWithOptions(LibreOfficeKit* pThis, aFilterOptions[1].Name = "InteractionHandler"; aFilterOptions[1].Value <<= xInteraction; - sal_Int16 nMacroExecMode = document::MacroExecMode::USE_CONFIG; + sal_Int16 nMacroExecMode = document::MacroExecMode::NEVER_EXECUTE; aFilterOptions[2].Name = "MacroExecutionMode"; aFilterOptions[2].Value <<= nMacroExecMode; |