summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-09-13 11:19:56 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-09-15 16:24:49 +0200
commitbcaeebd98a697d6bcf891990c3b13de5da1790e7 (patch)
treebec2ffd6f4d4cb17dd427966f8bdd8564d9a33c0 /sfx2/source/dialog
parent183206ee091c589a93b90a6a24cc4bdbe2d01062 (diff)
Related: tdf#125531 use RemoveTabPage for removing a tab page
which removes the tab cross-platform Change-Id: If2584cc75350fb0106f1a1f5190abb74b0ee0ccf Reviewed-on: https://gerrit.libreoffice.org/78871 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2/source/dialog')
-rw-r--r--sfx2/source/dialog/dinfdlg.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx
index 2b49b18bfc3b..782d4faa0b2e 100644
--- a/sfx2/source/dialog/dinfdlg.cxx
+++ b/sfx2/source/dialog/dinfdlg.cxx
@@ -1127,13 +1127,13 @@ SfxDocumentInfoDialog::SfxDocumentInfoDialog(weld::Window* pParent, const SfxIte
AddTabPage("general", SfxDocumentPage::Create, nullptr);
AddTabPage("description", SfxDocumentDescPage::Create, nullptr);
AddTabPage("customprops", SfxCustomPropertiesPage::Create, nullptr);
- AddTabPage("cmisprops", SfxCmisPropertiesPage::Create, nullptr);
- if (!rInfoItem.isCmisDocument())
- m_xTabCtrl->get_page("cmisprops")->hide();
+ if (rInfoItem.isCmisDocument())
+ AddTabPage("cmisprops", SfxCmisPropertiesPage::Create, nullptr);
+ else
+ RemoveTabPage("cmisprops");
AddTabPage("security", SfxSecurityPage::Create, nullptr);
}
-
void SfxDocumentInfoDialog::PageCreated(const OString& rId, SfxTabPage &rPage)
{
if (rId == "general")