diff options
-rw-r--r-- | basctl/source/basicide/moduldlg.cxx | 7 | ||||
-rw-r--r-- | vcl/unx/generic/print/prtsetup.cxx | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/basctl/source/basicide/moduldlg.cxx b/basctl/source/basicide/moduldlg.cxx index 47f8b4209f3d..dd5b4697f135 100644 --- a/basctl/source/basicide/moduldlg.cxx +++ b/basctl/source/basicide/moduldlg.cxx @@ -458,6 +458,13 @@ OrganizeDialog::OrganizeDialog(vcl::Window* pParent, sal_Int16 tabId, { get(m_pTabCtrl, "tabcontrol"); + sal_uInt16 nPageCount = m_pTabCtrl->GetPageCount(); + for (sal_uInt16 nPage = 0; nPage < nPageCount; ++nPage) + { + sal_uInt16 nPageId = m_pTabCtrl->GetPageId(nPage); + m_pTabCtrl->SetTabPage(nPageId, nullptr); + } + m_pTabCtrl->SetActivatePageHdl(LINK(this, OrganizeDialog, ActivatePageHdl)); if( tabId == 0 ) diff --git a/vcl/unx/generic/print/prtsetup.cxx b/vcl/unx/generic/print/prtsetup.cxx index 35620aa0430b..b4fb58a749d3 100644 --- a/vcl/unx/generic/print/prtsetup.cxx +++ b/vcl/unx/generic/print/prtsetup.cxx @@ -83,6 +83,13 @@ RTSDialog::RTSDialog(const PrinterInfo& rJobData, vcl::Window* pParent) get(m_pCancelButton, "cancel"); get(m_pTabControl, "notebook"); + sal_uInt16 nPageCount = m_pTabControl->GetPageCount(); + for (sal_uInt16 nPage = 0; nPage < nPageCount; ++nPage) + { + sal_uInt16 nPageId = m_pTabControl->GetPageId(nPage); + m_pTabControl->SetTabPage(nPageId, nullptr); + } + OUString aTitle(GetText()); SetText(aTitle.replaceAll("%s", m_aJobData.m_aPrinterName)); |