Mercurial > hg > svcore
diff data/model/FFTModel.cpp @ 1134:f8604a7c4660 3.0-integration
Merge from branch "tony-2.0-integration"
author | Chris Cannam |
---|---|
date | Wed, 14 Oct 2015 10:12:14 +0100 |
parents | e994747fb9dd |
children | e94719f941ba aa588c391d1a |
line wrap: on
line diff
--- a/data/model/FFTModel.cpp Mon Oct 12 15:06:15 2015 +0100 +++ b/data/model/FFTModel.cpp Wed Oct 14 10:12:14 2015 +0100 @@ -51,6 +51,10 @@ << ") must be at least FFT size (" << m_fftSize << ")" << endl; throw invalid_argument("FFTModel window size must be at least FFT size"); } + + connect(model, SIGNAL(modelChanged()), this, SIGNAL(modelChanged())); + connect(model, SIGNAL(modelChangedWithin(sv_frame_t, sv_frame_t)), + this, SIGNAL(modelChangedWithin(sv_frame_t, sv_frame_t))); } FFTModel::~FFTModel()