diff widgets/PropertyBox.cpp @ 233:628531da16ef

pass equalizer filter curve in float
author lbajardsilogic
date Thu, 06 Mar 2008 16:37:44 +0000
parents 70b88fbbfb5c
children 7ab3e81f52d4
line wrap: on
line diff
--- a/widgets/PropertyBox.cpp	Thu Mar 06 14:56:40 2008 +0000
+++ b/widgets/PropertyBox.cpp	Thu Mar 06 16:37:44 2008 +0000
@@ -571,7 +571,7 @@
         }*/
 
         if (!have) {
-			connect(cb, SIGNAL(filterChanged(QVector<int>&)), this, SLOT(propertyControllerChanged(QVector<int>&)));
+			connect(cb, SIGNAL(filterChanged(QVector<float>&)), this, SLOT(propertyControllerChanged(QVector<float>&)));
             connect(m_container, SIGNAL(signalChanged(float*)), cb, SLOT(setCurve(float*)));
 			connect(m_container, SIGNAL(filterChanged(float*)), cb, SLOT(setFilter(float*)));
 			connect(cb, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
@@ -691,7 +691,7 @@
 }
 
 void
-PropertyBox::propertyControllerChanged(QVector<int> &value)
+PropertyBox::propertyControllerChanged(QVector<float> &value)
 {
     QObject *obj = sender();
     QString name = obj->objectName();