fixed event-loop segfault

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@444 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Javier Serrano Polo
2006-12-20 20:28:12 +00:00
parent e722f609e0
commit f4ab55bce5
3 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2006-12-20 Javier Serrano Polo <jasp00/at/terra/dot/es>
* src/widgets/rack_plugin.cpp:
* src/widgets/tempo_sync_knob.cpp:
defer deletion of additional windows, fixes event-loop segfault
2006-12-20 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* src/tracks/instrument_track.cpp:

View File

@@ -236,7 +236,7 @@ rackPlugin::rackPlugin( QWidget * _parent,
rackPlugin::~rackPlugin()
{
delete m_effect;
delete m_controlView;
m_controlView->deleteLater();
}

View File

@@ -76,7 +76,7 @@ tempoSyncKnob::tempoSyncKnob( int _knob_num, QWidget * _parent,
tempoSyncKnob::~tempoSyncKnob()
{
delete m_custom;
m_custom->deleteLater();
}