From 6ed8c5a0f19901ab413c6610649326b2475c3a8c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 25 Jul 2021 21:35:05 +0200 Subject: use officecfg for security options Change-Id: I9d91fd5b260b82e05aac6567143386742953ecf6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119486 Tested-by: Jenkins Reviewed-by: Noel Grandin --- uui/source/secmacrowarnings.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'uui') diff --git a/uui/source/secmacrowarnings.cxx b/uui/source/secmacrowarnings.cxx index 81351e957c17..995eddc40246 100644 --- a/uui/source/secmacrowarnings.cxx +++ b/uui/source/secmacrowarnings.cxx @@ -152,13 +152,12 @@ void MacroWarning::InitControls() mxViewSignsBtn->connect_clicked(LINK(this, MacroWarning, ViewSignsBtnHdl)); mxViewSignsBtn->set_sensitive(false); - const SvtSecurityOptions aSecOption; - if (!aSecOption.IsReadOnly(SvtSecurityOptions::EOption::MacroTrustedAuthors)) + if (!SvtSecurityOptions::IsReadOnly(SvtSecurityOptions::EOption::MacroTrustedAuthors)) mxAlwaysTrustCB->connect_toggled(LINK(this, MacroWarning, AlwaysTrustCheckHdl)); else mxAlwaysTrustCB->set_visible(false); - mnActSecLevel = aSecOption.GetMacroSecurityLevel(); + mnActSecLevel = SvtSecurityOptions::GetMacroSecurityLevel(); if ( mnActSecLevel >= 2 ) mxEnableBtn->set_sensitive(false); } -- cgit