sw/source/ui/dialog/uiregionsw.cxx |   16 ++++++++++++++++
 1 file changed, 16 insertions(+)

New commits:
commit 71e96374f0111360ed7da1df0f3323b09d920381
Author:     Andras Timar <andras.ti...@collabora.com>
AuthorDate: Thu Nov 24 13:37:36 2022 +0100
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Tue Dec 6 07:41:41 2022 +0000

    Disallow linking files as Writer sections in Online
    
    Change-Id: I9e4971c72db44ca8216ac468240dd52d46e0b680
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143225
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>
    Reviewed-by: Henry Castro <hcas...@collabora.com>
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143672
    Tested-by: Jenkins
    Reviewed-by: Andras Timar <andras.ti...@collabora.com>

diff --git a/sw/source/ui/dialog/uiregionsw.cxx 
b/sw/source/ui/dialog/uiregionsw.cxx
index 77b0fdd1f757..afe90adc6c21 100644
--- a/sw/source/ui/dialog/uiregionsw.cxx
+++ b/sw/source/ui/dialog/uiregionsw.cxx
@@ -36,6 +36,7 @@
 #include <svtools/htmlcfg.hxx>
 #include <osl/diagnose.h>
 #include <o3tl/string_view.hxx>
+#include <comphelper/lok.hxx>
 
 #include <uitool.hxx>
 #include <IMark.hxx>
@@ -1491,6 +1492,21 @@ 
SwInsertSectionTabPage::SwInsertSectionTabPage(weld::Container* pPage, weld::Dia
     m_xDDECB->connect_toggled( LINK( this, SwInsertSectionTabPage, DDEHdl ));
     ChangeProtectHdl(*m_xProtectCB);
     m_xSubRegionED->set_entry_completion(true, true);
+
+    // Hide Link section. In general it makes no sense to insert a file from 
the jail,
+    // because it does not contain any usable files (documents).
+    if(comphelper::LibreOfficeKit::isActive())
+    {
+        m_xBuilder->weld_label("label1")->hide(); // Link
+        m_xFileCB->hide();
+        m_xDDECB->hide();
+        m_xDDECommandFT->hide();
+        m_xFileNameFT->hide();
+        m_xFileNameED->hide();
+        m_xFilePB->hide();
+        m_xSubRegionFT->hide();
+        m_xSubRegionED->hide();
+    }
 }
 
 SwInsertSectionTabPage::~SwInsertSectionTabPage()

Reply via email to