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 /include/vcl/tabpage.hxx | |
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 'include/vcl/tabpage.hxx')
-rw-r--r-- | include/vcl/tabpage.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/vcl/tabpage.hxx b/include/vcl/tabpage.hxx index 0dc11e4a561b..bd308a96a355 100644 --- a/include/vcl/tabpage.hxx +++ b/include/vcl/tabpage.hxx @@ -21,13 +21,11 @@ #define INCLUDED_VCL_TABPAGE_HXX #include <vcl/dllapi.h> -#include <vcl/builder.hxx> #include <vcl/window.hxx> #include <vcl/IContext.hxx> class VCL_DLLPUBLIC TabPage : public vcl::Window - , public VclBuilderContainer , public vcl::IContext { private: @@ -37,9 +35,7 @@ private: public: explicit TabPage( vcl::Window* pParent, WinBits nStyle = 0 ); - explicit TabPage( vcl::Window *pParent, const OString& rID, const OUString& rUIXMLDescription ); virtual ~TabPage() override; - virtual void dispose() override; virtual void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect ) override; virtual void Draw( OutputDevice* pDev, const Point& rPos, DrawFlags nFlags ) override; |