rack_plugin deletes control view when destroyed

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@327 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Danny McRae
2006-08-15 12:36:44 +00:00
parent 73aefd9561
commit 437bcf86fb
2 changed files with 6 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2006-08-15 Danny McRae <khjklujn/at/users/dot/sourceforge/dot/net>
* 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 <tobydox/at/users/dot/sourceforge/dot/net>
* Makefile.cvs:

View File

@@ -202,6 +202,7 @@ rackPlugin::rackPlugin( QWidget * _parent, ladspa_key_t _key, track * _track, en
rackPlugin::~rackPlugin()
{
delete m_effect;
delete m_controlView;
}