diff options
author | Henry Castro <hcastro@collabora.com> | 2021-11-12 11:30:13 -0400 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2021-11-13 20:23:34 +0100 |
commit | ead2aa7a7088aa2b41a90746351fdf74822dbbe0 (patch) | |
tree | b34b4ed5966b0350567a2c23b977e19c4b0d89e7 /sw | |
parent | 66a0b5f04d1ec06d2631a9f739b995d365bfc879 (diff) |
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 <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/fldui/fldtdlg.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sw/source/ui/fldui/fldtdlg.cxx b/sw/source/ui/fldui/fldtdlg.cxx index 8c1bb998fb85..5a0a8022262a 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 <globals.hrc> @@ -93,6 +94,9 @@ SwFieldDlg::SwFieldDlg(SfxBindings* pB, SwChildWinWrapper* pCW, weld::Window *pP RemoveTabPage("functions"); RemoveTabPage("database"); } + + if (comphelper::LibreOfficeKit::isActive()) + RemoveTabPage("database"); } SwFieldDlg::~SwFieldDlg() |