comparison sv/main/MainWindow.cpp @ 223:c413e82a4812

reorganise RealTimeFilter for Equalizer integration
author lbajardsilogic
date Mon, 11 Feb 2008 15:17:54 +0000
parents e8175839a5ac
children 4a157a863e87
comparison
equal deleted inserted replaced
222:c9042816f12d 223:c413e82a4812
2925 connect(m_document, SIGNAL(modelGenerationFailed(QString)), 2925 connect(m_document, SIGNAL(modelGenerationFailed(QString)),
2926 this, SLOT(modelGenerationFailed(QString))); 2926 this, SLOT(modelGenerationFailed(QString)));
2927 connect(m_document, SIGNAL(modelRegenerationFailed(QString, QString)), 2927 connect(m_document, SIGNAL(modelRegenerationFailed(QString, QString)),
2928 this, SLOT(modelRegenerationFailed(QString, QString))); 2928 this, SLOT(modelRegenerationFailed(QString, QString)));
2929 2929
2930 connect(m_document, SIGNAL(newFilterAdded(Filter *)), 2930 connect(m_document, SIGNAL(newFilterAdded(PropertyContainer *)),
2931 m_filterPropertyStack, SLOT(filterAdded(Filter *))); 2931 m_filterPropertyStack, SLOT(filterAdded(PropertyContainer *)));
2932 connect(m_document, SIGNAL(filterRemoved(QString)), 2932 connect(m_document, SIGNAL(filterRemoved(QString)),
2933 m_filterPropertyStack, SLOT(filterRemoved(QString))); 2933 m_filterPropertyStack, SLOT(filterRemoved(QString)));
2934 2934
2935 m_playSource->setRealTimeFilterStack(m_document->getRealTimeFilterStack()); 2935 m_playSource->setRealTimeFilterStack(m_document->getRealTimeFilterStack());
2936 2936