summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/dlgpage.cxx
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2023-08-22 08:14:10 +0200
committerTomaž Vajngerl <quikee@gmail.com>2023-08-26 23:19:57 +0200
commitf4ed90bcad83ea24644c1cbf077b369ae05f004e (patch)
tree07e19e2c2dccf4d73197fcabf9334d9915770f0b /sd/source/ui/dlg/dlgpage.cxx
parenta535bacb2adeb491e919992a38e891945ca248f0 (diff)
sd: remove theme tab page
Change-Id: Iffb3d0f6d6933891333da68fa4569a3638ba18f1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156123 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'sd/source/ui/dlg/dlgpage.cxx')
-rw-r--r--sd/source/ui/dlg/dlgpage.cxx9
1 files changed, 1 insertions, 8 deletions
diff --git a/sd/source/ui/dlg/dlgpage.cxx b/sd/source/ui/dlg/dlgpage.cxx
index 5e41ec6cec20..833328659be3 100644
--- a/sd/source/ui/dlg/dlgpage.cxx
+++ b/sd/source/ui/dlg/dlgpage.cxx
@@ -36,7 +36,7 @@
* Constructor of tab dialog: appends pages to the dialog
*/
SdPageDlg::SdPageDlg(SfxObjectShell const* pDocSh, weld::Window* pParent, const SfxItemSet* pAttr,
- bool bAreaPage, bool bIsImpressDoc, bool bIsImpressMaster)
+ bool bAreaPage, bool bIsImpressDoc)
: SfxTabDialogController(pParent, "modules/sdraw/ui/drawpagedialog.ui", "DrawPageDialog", pAttr)
, mbIsImpressDoc(bIsImpressDoc)
{
@@ -58,7 +58,6 @@ SdPageDlg::SdPageDlg(SfxObjectShell const* pDocSh, weld::Window* pParent, const
AddTabPage("RID_SVXPAGE_AREA", pFact->GetTabPageCreatorFunc(RID_SVXPAGE_AREA), nullptr);
AddTabPage("RID_SVXPAGE_TRANSPARENCE", pFact->GetTabPageCreatorFunc(RID_SVXPAGE_TRANSPARENCE),
nullptr);
- AddTabPage("RID_SVXPAGE_THEME", pFact->GetTabPageCreatorFunc(RID_SVXPAGE_THEME), nullptr);
if (!bAreaPage) // I have to add the page before I remove it !
{
@@ -66,12 +65,6 @@ SdPageDlg::SdPageDlg(SfxObjectShell const* pDocSh, weld::Window* pParent, const
RemoveTabPage("RID_SVXPAGE_TRANSPARENCE");
}
- if (!bIsImpressMaster)
- {
- // Only slide masters can have a theme.
- RemoveTabPage("RID_SVXPAGE_THEME");
- }
-
if (mbIsImpressDoc)
{
set_title(SdResId(STR_SLIDE_SETUP_TITLE));