sw/source/ui/fldui/fldtdlg.cxx | 4 ++++ 1 file changed, 4 insertions(+)
New commits: commit a0c778cda76b765b0bed0795c3779f548f15f1bc Author: Henry Castro <hcas...@collabora.com> AuthorDate: Fri Nov 12 11:30:13 2021 -0400 Commit: Andras Timar <andras.ti...@collabora.com> CommitDate: Sun Nov 14 16:31:23 2021 +0100 lok: sw: remove database tab It is not functional the database feature yet. Change-Id: Iea073512424a738dc2d789923740b837d6f3d691 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125113 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com> Reviewed-by: Andras Timar <andras.ti...@collabora.com> (cherry picked from commit ead2aa7a7088aa2b41a90746351fdf74822dbbe0) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125130 Tested-by: Jenkins diff --git a/sw/source/ui/fldui/fldtdlg.cxx b/sw/source/ui/fldui/fldtdlg.cxx index 79bf8037a0ee..2075175ec57c 100644 --- a/sw/source/ui/fldui/fldtdlg.cxx +++ b/sw/source/ui/fldui/fldtdlg.cxx @@ -40,6 +40,7 @@ #include <view.hxx> #include <fldtdlg.hxx> #include <swmodule.hxx> +#include <comphelper/lok.hxx> #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/document/XDocumentProperties.hpp> @@ -92,6 +93,9 @@ SwFieldDlg::SwFieldDlg(SfxBindings* pB, SwChildWinWrapper* pCW, weld::Window *pP RemoveTabPage("functions"); RemoveTabPage("database"); } + + if (comphelper::LibreOfficeKit::isActive()) + RemoveTabPage("database"); } SwFieldDlg::~SwFieldDlg()