Mercurial > hg > svcore
comparison data/model/WritableWaveFileModel.cpp @ 947:cd42620e3f40
Fix some errant signals (the modelChanged with args are now modelChangedWithin)
author | Chris Cannam |
---|---|
date | Thu, 17 Jul 2014 14:50:31 +0100 |
parents | 59e7fe1b1003 |
children | cc27f35aa75c |
comparison
equal
deleted
inserted
replaced
946:2d34148d5d6e | 947:cd42620e3f40 |
---|---|
84 return; | 84 return; |
85 } | 85 } |
86 m_model->setStartFrame(m_startFrame); | 86 m_model->setStartFrame(m_startFrame); |
87 | 87 |
88 connect(m_model, SIGNAL(modelChanged()), this, SIGNAL(modelChanged())); | 88 connect(m_model, SIGNAL(modelChanged()), this, SIGNAL(modelChanged())); |
89 connect(m_model, SIGNAL(modelChanged(int, int)), | 89 connect(m_model, SIGNAL(modelChangedWithin(int, int)), |
90 this, SIGNAL(modelChanged(int, int))); | 90 this, SIGNAL(modelChangedWithin(int, int))); |
91 } | 91 } |
92 | 92 |
93 WritableWaveFileModel::~WritableWaveFileModel() | 93 WritableWaveFileModel::~WritableWaveFileModel() |
94 { | 94 { |
95 delete m_model; | 95 delete m_model; |