diff options
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/doc/objserv.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sfx2/source/doc/objserv.cxx b/sfx2/source/doc/objserv.cxx index a6ac42734c17..12c28f4e614d 100644 --- a/sfx2/source/doc/objserv.cxx +++ b/sfx2/source/doc/objserv.cxx @@ -538,6 +538,12 @@ void SetDocProperties(const uno::Reference<document::XDocumentProperties>& xDP, void SfxObjectShell::AfterSignContent(bool bHaveWeSigned, weld::Window* pDialogParent) { + if (comphelper::LibreOfficeKit::isActive()) + { + // LOK signing certificates are per-view, don't store them in the model. + return; + } + if ( bHaveWeSigned && HasValidSignatures() ) { std::unique_ptr<weld::MessageDialog> xBox(Application::CreateMessageDialog( pDialogParent, |