From: Francois Cartegnie Date: Thu, 7 Jan 2010 23:02:14 +0000 (+0100) Subject: Qt: rename slots to explicit names X-Git-Tag: 1.1.0-ff~1302 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=4704ae3fc98d6bea83f3f4290d314cfabce16001;p=vlc Qt: rename slots to explicit names Signed-off-by: RĂ©mi Denis-Courmont --- diff --git a/modules/gui/qt4/components/controller_widget.cpp b/modules/gui/qt4/components/controller_widget.cpp index 8775fe42db..7aac19d41e 100644 --- a/modules/gui/qt4/components/controller_widget.cpp +++ b/modules/gui/qt4/components/controller_widget.cpp @@ -115,12 +115,12 @@ SoundWidget::SoundWidget( QWidget *_parent, intf_thread_t * _p_intf, VOLUME_MAX / (AOUT_VOLUME_MAX/2) ) ); /* Force the update at build time in order to have a muted icon if needed */ - updateVolume( volumeSlider->value() ); + userUpdateVolume( volumeSlider->value() ); /* Volume control connection */ CONNECT( volumeSlider, valueChanged( int ), this, refreshLabels( void ) ); - CONNECT( volumeSlider, sliderMoved( int ), this, updateVolume( int ) ); - CONNECT( THEMIM, volumeChanged( void ), this, updateVolume( void ) ); + CONNECT( volumeSlider, sliderMoved( int ), this, userUpdateVolume( int ) ); + CONNECT( THEMIM, volumeChanged( void ), this, libUpdateVolume( void ) ); CONNECT( THEMIM, soundMuteChanged( void ), this, updateMuteStatus( void ) ); } @@ -150,7 +150,7 @@ void SoundWidget::refreshLabels() } /* volumeSlider changed value event slot */ -void SoundWidget::updateVolume( int i_sliderVolume ) +void SoundWidget::userUpdateVolume( int i_sliderVolume ) { /* Only if volume is set by user action on slider */ setMuted( false ); @@ -161,7 +161,7 @@ void SoundWidget::updateVolume( int i_sliderVolume ) } /* libvlc changed value event slot */ -void SoundWidget::updateVolume() +void SoundWidget::libUpdateVolume() { /* Audio part */ audio_volume_t i_volume; diff --git a/modules/gui/qt4/components/controller_widget.hpp b/modules/gui/qt4/components/controller_widget.hpp index 71864e90e4..5727da3cb1 100644 --- a/modules/gui/qt4/components/controller_widget.hpp +++ b/modules/gui/qt4/components/controller_widget.hpp @@ -88,8 +88,8 @@ private: bool b_is_muted; protected slots: - void updateVolume( int ); - void updateVolume( void ); + void userUpdateVolume( int ); + void libUpdateVolume( void ); void updateMuteStatus( void ); void refreshLabels( void ); void showVolumeMenu( QPoint pos );