diff options
Diffstat (limited to 'sfx2/source/appl/appserv.cxx')
-rw-r--r-- | sfx2/source/appl/appserv.cxx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx index cccc2abc1a..58963ceed2 100644 --- a/sfx2/source/appl/appserv.cxx +++ b/sfx2/source/appl/appserv.cxx @@ -1483,6 +1483,20 @@ void SfxApplication::OfaExec_Impl( SfxRequest& rReq ) break; } + case SID_OPTIONS_SECURITY: + { + SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); + VclPtr<AbstractSecurityOptionsDialog> pDlg = + pFact->CreateSvxSecurityOptionsDialog(rReq.GetFrameWeld()); + + if (pDlg->Execute() == RET_OK) { + pDlg->SetSecurityOptions(); + } + + pDlg.disposeAndClear(); + break; + } + case SID_MORE_DICTIONARIES: { uno::Sequence<beans::PropertyValue> aArgs{ comphelper::makePropertyValue( |