diff --git a/ChangeLog b/ChangeLog index ebfc10607e..3bd17934be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-08-15 Danny McRae + * src/widgets/rack_plugin.cpp: + added deletion of the control view to the dtor to make it clean + up after itself + 2006-08-11 Tobias Doerffel * Makefile.cvs: diff --git a/src/widgets/rack_plugin.cpp b/src/widgets/rack_plugin.cpp index 65be8b2ac3..92e70302d3 100644 --- a/src/widgets/rack_plugin.cpp +++ b/src/widgets/rack_plugin.cpp @@ -202,6 +202,7 @@ rackPlugin::rackPlugin( QWidget * _parent, ladspa_key_t _key, track * _track, en rackPlugin::~rackPlugin() { delete m_effect; + delete m_controlView; }