summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-08-23 09:55:02 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-08-23 13:44:21 +0200
commit8d71f19550c969bb322460fd7a06021a0421ba66 (patch)
tree34501bae3de0ee019e875a943a8aa6da3dae61e5
parente48deb1d36d2c237badc4d2d8ce6d3be6a1685b2 (diff)
don't call Show on the SfxTabPage
it causes spurious toplevels in the welded case Change-Id: I321dfaf1d9df1d4a0b80435814e844d8fa29847b Reviewed-on: https://gerrit.libreoffice.org/78004 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--dbaccess/source/ui/dlg/dbwizsetup.cxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/dbaccess/source/ui/dlg/dbwizsetup.cxx b/dbaccess/source/ui/dlg/dbwizsetup.cxx
index 78ec885efa14..bc1bd79c581e 100644
--- a/dbaccess/source/ui/dlg/dbwizsetup.cxx
+++ b/dbaccess/source/ui/dlg/dbwizsetup.cxx
@@ -556,7 +556,6 @@ VclPtr<TabPage> ODbTypeWizDialogSetup::createPage(WizardState _nState)
defaultButton( _nState == PAGE_DBSETUPWIZARD_FINAL ? WizardButtonFlags::FINISH : WizardButtonFlags::NEXT );
enableButtons( WizardButtonFlags::FINISH, _nState == PAGE_DBSETUPWIZARD_FINAL );
enableButtons( WizardButtonFlags::NEXT, _nState != PAGE_DBSETUPWIZARD_FINAL );
- pPage->Show();
m_xAssistant->set_page_title(sIdent, getStateDisplayName(_nState));
}