diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-09-03 20:52:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-09-04 22:22:16 +0200 |
commit | 0593f35f770e2df5241b2cec10ea1bc74cf3d4e6 (patch) | |
tree | 80cb62c7a3d6c68dfa0bbfc608f73427bc33e2d0 /vcl | |
parent | f54edfb023d9007faa23b6b6ffa1f4d47ccd1fac (diff) |
TabPage no longer needs to inherit from VclBuilderContainer
Change-Id: Iaab26ade1109daf732e58a2f3741cc43243e374c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102023
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/tabpage.cxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/vcl/source/window/tabpage.cxx b/vcl/source/window/tabpage.cxx index 5b2408b1b1c1..827fbc35cd24 100644 --- a/vcl/source/window/tabpage.cxx +++ b/vcl/source/window/tabpage.cxx @@ -69,28 +69,11 @@ TabPage::TabPage( vcl::Window* pParent, WinBits nStyle ) : ImplInit( pParent, nStyle ); } -TabPage::TabPage(vcl::Window *pParent, const OString& rID, const OUString& rUIXMLDescription) - : Window(WindowType::TABPAGE) - , IContext() -{ - ImplInit(pParent, 0); - m_pUIBuilder.reset( new VclBuilder(this, AllSettings::GetUIRootDir(), rUIXMLDescription, rID) ); - set_hexpand(true); - set_vexpand(true); - set_expand(true); -} - TabPage::~TabPage() { disposeOnce(); } -void TabPage::dispose() -{ - disposeBuilder(); - vcl::Window::dispose(); -} - void TabPage::StateChanged( StateChangedType nType ) { Window::StateChanged( nType ); |