[vlc-commits] Qt: Compressor/Spatializer: missing signal routing

Francois Cartegnie git at videolan.org
Tue Jan 1 15:17:03 CET 2013


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Tue Jan  1 15:16:27 2013 +0100| [7939c3e5258149392e14f410497a2d437f21a26b] | committer: Francois Cartegnie

Qt: Compressor/Spatializer: missing signal routing

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7939c3e5258149392e14f410497a2d437f21a26b
---

 modules/gui/qt4/components/extended_panels.cpp |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp
index 4048679..aae56af 100644
--- a/modules/gui/qt4/components/extended_panels.cpp
+++ b/modules/gui/qt4/components/extended_panels.cpp
@@ -1313,6 +1313,7 @@ Compressor::Compressor( intf_thread_t *_p_intf, QWidget *_parent )
         compressorBox->setChecked( true );
     else
         compressorBox->setChecked( false );
+    CONNECT( compressorBox, toggled(bool), this, enable() );
 
     free( psz_af );
     updateSliders();
@@ -1433,6 +1434,7 @@ Spatializer::Spatializer( intf_thread_t *_p_intf, QWidget *_parent )
         spatializerBox->setChecked( true );
     else
         spatializerBox->setChecked( false );
+    CONNECT( spatializerBox, toggled(bool), this, enable() );
 
     free( psz_af );
     setValues();



More information about the vlc-commits mailing list