diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-10-09 22:02:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-10-09 22:03:14 +0100 |
commit | bf59cceafd05dba74e4fc3a3f5fdc8098bb1a95b (patch) | |
tree | cc6f3dcfe92636234961f6c266b37d6ea7857aa3 /sfx2 | |
parent | 8e610f6148c89d931d264b81fb1f5736e45c8a93 (diff) |
fix blank dialogs: now need to explicitly call show on containers
Change-Id: I803f808e7049777ec5a46dc2fce00a3943321ffa
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/tabdlg.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx index 5d883c7c2915..b137cee62372 100644 --- a/sfx2/source/dialog/tabdlg.cxx +++ b/sfx2/source/dialog/tabdlg.cxx @@ -592,6 +592,8 @@ void SfxTabDialog::Init_Impl( sal_Bool bFmtFlag, const String* pUserButtonText, LINK( this, SfxTabDialog, ActivatePageHdl ) ); m_pTabCtrl->SetDeactivatePageHdl( LINK( this, SfxTabDialog, DeactivatePageHdl ) ); + m_pActionArea->Show(); + m_pVBox->Show(); m_pTabCtrl->Show(); m_pOKBtn->Show(); m_pCancelBtn->Show(); |