summaryrefslogtreecommitdiff
path: root/vcl
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 /vcl
parentc7efb51e31a4eea48ffed291e5c7fb907b1811e4 (diff)
loplugin:vclwidgets
Change-Id: I4292b8838b39dbf199da3cfa0f161bae1c75e9e4
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/control/slider.cxx11
1 files changed, 11 insertions, 0 deletions
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();