diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2023-04-07 19:03:55 +0200 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2023-04-07 19:37:47 +0200 |
commit | 809030c497d9c8280a14e4b5915228a329b323c6 (patch) | |
tree | 63d5597d76d233df3a99bc9302c9e214b1edda8a | |
parent | 47e000b9289e0e37e1c2f5064064932ecd320152 (diff) |
lok: Hide file linking in sectioncp-21.06.37-1
this is followup for 6f56317
Change-Id: I87227b3e665a6d15378ee294556bcd2f95801e6b
-rw-r--r-- | sw/source/ui/dialog/uiregionsw.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sw/source/ui/dialog/uiregionsw.cxx b/sw/source/ui/dialog/uiregionsw.cxx index a5492545d74a..a7e10e44d364 100644 --- a/sw/source/ui/dialog/uiregionsw.cxx +++ b/sw/source/ui/dialog/uiregionsw.cxx @@ -395,6 +395,19 @@ SwEditRegionDlg::SwEditRegionDlg(weld::Window* pParent, SwWrtShell& rWrtSh) m_xTree->show(); bDontCheckPasswd = false; + + if(comphelper::LibreOfficeKit::isActive()) + { + m_xBuilder->weld_label("label8")->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(); + } } bool SwEditRegionDlg::CheckPasswd(weld::ToggleButton* pBox) |