summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-05-25 11:13:36 +0200
committerNoel Grandin <noel@peralex.com>2015-05-25 11:13:36 +0200
commit3fad26e5dd6b04a521a96a618473ed08c12b9f9c (patch)
tree87d358d63ec8d52156099ff5e076b8dc4f696f59
parentc7efb51e31a4eea48ffed291e5c7fb907b1811e4 (diff)
loplugin:vclwidgets
Change-Id: I4292b8838b39dbf199da3cfa0f161bae1c75e9e4
-rw-r--r--include/vcl/slider.hxx3
-rw-r--r--vcl/source/control/slider.cxx11
2 files changed, 13 insertions, 1 deletions
diff --git a/include/vcl/slider.hxx b/include/vcl/slider.hxx
index 203554f6341c..8e609cd7ecaa 100644
--- a/include/vcl/slider.hxx
+++ b/include/vcl/slider.hxx
@@ -81,7 +81,8 @@ private:
public:
Slider( vcl::Window* pParent, WinBits nStyle = WB_HORZ );
-
+ virtual ~Slider();
+ virtual void dispose() SAL_OVERRIDE;
virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
virtual void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
virtual void Tracking( const TrackingEvent& rTEvt ) SAL_OVERRIDE;
diff --git a/vcl/source/control/slider.cxx b/vcl/source/control/slider.cxx
index 6fe7110ef5c8..4c5e8e6387c3 100644
--- a/vcl/source/control/slider.cxx
+++ b/vcl/source/control/slider.cxx
@@ -82,6 +82,17 @@ Slider::Slider( vcl::Window* pParent, WinBits nStyle ) :
ImplInit( pParent, nStyle );
}
+Slider::~Slider()
+{
+ disposeOnce();
+}
+
+void Slider::dispose()
+{
+ mpLinkedField.clear();
+ Control::dispose();
+}
+
void Slider::ImplInitSettings()
{
vcl::Window* pParent = GetParent();