Commit 68c78f8b authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: compressor: remove useless indirect slot

parent 4293ad80
...@@ -1293,7 +1293,7 @@ Compressor::Compressor( intf_thread_t *_p_intf, QWidget *_parent ) ...@@ -1293,7 +1293,7 @@ Compressor::Compressor( intf_thread_t *_p_intf, QWidget *_parent )
} }
for( int i = 0; i < NUM_CP_CTRL; i++ ) for( int i = 0; i < NUM_CP_CTRL; i++ )
CONNECT( compCtrl[i], valueChanged( int ), this, setInitValues() ); CONNECT( compCtrl[i], valueChanged( int ), this, setValues() );
BUTTONACT( enableCheck, enable() ); BUTTONACT( enableCheck, enable() );
...@@ -1359,11 +1359,6 @@ void Compressor::updateSliders( float * p_controlVars ) ...@@ -1359,11 +1359,6 @@ void Compressor::updateSliders( float * p_controlVars )
} }
} }
void Compressor::setInitValues()
{
setValues();
}
void Compressor::setValues() void Compressor::setValues()
{ {
vlc_object_t *p_aout = (vlc_object_t *)THEMIM->getAout(); vlc_object_t *p_aout = (vlc_object_t *)THEMIM->getAout();
......
...@@ -135,12 +135,11 @@ private: ...@@ -135,12 +135,11 @@ private:
void addCallbacks( vlc_object_t * ); void addCallbacks( vlc_object_t * );
void updateSliders(float *); void updateSliders(float *);
void setValues();
private slots: private slots:
void enable(bool); void enable(bool);
void enable(); void enable();
void setInitValues(); void setValues();
}; };
class Spatializer: public QWidget class Spatializer: public QWidget
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment