diff options
author | Henry Castro <hcastro@collabora.com> | 2021-03-01 10:25:09 -0400 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2021-03-03 16:30:03 +0100 |
commit | c825ba303bb26fa8da87e7151382a99df15bcad9 (patch) | |
tree | 10fb8fad7152b7152b6af7c8bbc10a5b25e2389b | |
parent | ef05e8563175afcc48035568f1705919d37cd64e (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>
-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 621e2f3455f8..7fdc63086650 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -2274,7 +2274,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; |