diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-02-27 16:29:46 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-09 22:26:09 +0100 |
commit | 562109b8357eb0690034844e097e0acafbdc39b6 (patch) | |
tree | c095810b0daf3b216d6802b02500d1191c1dbece /include/vcl/tabpage.hxx | |
parent | 292990396aefdae15b91f2df395da4b52d5e3f6a (diff) |
vcl: ensure that VclBuilder is disposed before parent window.
Move VclBuilder to use VclPtr, link to documentation, and fix more
double dispose issues.
Change-Id: I4900b69dbb381bd7d6fda97f2a5e623bb58e0a9f
Diffstat (limited to 'include/vcl/tabpage.hxx')
-rw-r--r-- | include/vcl/tabpage.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/tabpage.hxx b/include/vcl/tabpage.hxx index c7361972ccb1..7294d4896748 100644 --- a/include/vcl/tabpage.hxx +++ b/include/vcl/tabpage.hxx @@ -41,6 +41,8 @@ private: public: explicit TabPage( vcl::Window* pParent, WinBits nStyle = 0 ); explicit TabPage( vcl::Window *pParent, const OString& rID, const OUString& rUIXMLDescription ); + ~TabPage(); + virtual void dispose() SAL_OVERRIDE; virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE; virtual void Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, sal_uLong nFlags ) SAL_OVERRIDE; |