queued connections for models for not getting signaled at destruction-time
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1244 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
@@ -279,7 +279,7 @@ automationEditor::automationEditor( void ) :
|
||||
m_zoomingXComboBox->setModel( &m_zoomingXModel );
|
||||
|
||||
connect( &m_zoomingXModel, SIGNAL( dataChanged() ),
|
||||
this, SLOT( zoomingXChanged() ) );
|
||||
this, SLOT( zoomingXChanged() ), Qt::QueuedConnection );
|
||||
|
||||
|
||||
QLabel * zoom_y_lbl = new QLabel( m_toolBar );
|
||||
@@ -298,7 +298,7 @@ automationEditor::automationEditor( void ) :
|
||||
m_zoomingYComboBox->setModel( &m_zoomingYModel );
|
||||
|
||||
connect( &m_zoomingYModel, SIGNAL( dataChanged() ),
|
||||
this, SLOT( zoomingYChanged() ) );
|
||||
this, SLOT( zoomingYChanged() ), Qt::QueuedConnection );
|
||||
|
||||
|
||||
// setup quantize-stuff
|
||||
|
||||
Reference in New Issue
Block a user