diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-01-09 13:38:59 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-09 20:10:03 +0100 |
commit | 04acdd8db4236e5cd4a89c3ca3e9049ff731b717 (patch) | |
tree | 5afc44058f9c6c48cc8e297bfdbd61c76968b34b /include/vcl/spinfld.hxx | |
parent | eabaca0cf1382242c6f68084ece93e35cd8fab04 (diff) |
vcl: add dispose implementations & destructor calls.
Change-Id: Iefeaf81d4f7463440a6c5a8abb4d68aa85190698
Diffstat (limited to 'include/vcl/spinfld.hxx')
-rw-r--r-- | include/vcl/spinfld.hxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/vcl/spinfld.hxx b/include/vcl/spinfld.hxx index 493dcf897873..b0474b1685c9 100644 --- a/include/vcl/spinfld.hxx +++ b/include/vcl/spinfld.hxx @@ -26,9 +26,6 @@ #include <vcl/timer.hxx> -// - SpinField - - - class VCL_DLLPUBLIC SpinField : public Edit { protected: @@ -69,12 +66,11 @@ protected: virtual void FillLayoutData() const SAL_OVERRIDE; Rectangle * ImplFindPartRect( const Point& rPt ); - virtual void dispose() SAL_OVERRIDE; - public: explicit SpinField( vcl::Window* pParent, WinBits nWinStyle = 0 ); explicit SpinField( vcl::Window* pParent, const ResId& ); virtual ~SpinField(); + virtual void dispose() SAL_OVERRIDE; virtual bool ShowDropDown( bool bShow ); |