From: Jean-Baptiste Kempf Date: Wed, 25 Jun 2008 01:45:42 +0000 (-0700) Subject: Code Cosmetics X-Git-Tag: 0.9.0-test1~121^2~15 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=c997e06cab6ec45e06664c2fe6447085b4aab187;p=vlc Code Cosmetics --- diff --git a/modules/gui/qt4/components/open_panels.cpp b/modules/gui/qt4/components/open_panels.cpp index 5f8ec12b17..553c96fc86 100644 --- a/modules/gui/qt4/components/open_panels.cpp +++ b/modules/gui/qt4/components/open_panels.cpp @@ -926,10 +926,10 @@ CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) : screenDevLayout->addWidget( screenLabel, 0, 0 ); /* General connects */ - connect( ui.deviceCombo, SIGNAL( activated( int ) ), - stackedDevLayout, SLOT( setCurrentIndex( int ) ) ); - connect( ui.deviceCombo, SIGNAL( activated( int ) ), - stackedPropLayout, SLOT( setCurrentIndex( int ) ) ); + CONNECT( ui.deviceCombo, activated( int ) , + stackedDevLayout, setCurrentIndex( int ) ); + CONNECT( ui.deviceCombo, activated( int ), + stackedPropLayout, setCurrentIndex( int ) ); CONNECT( ui.deviceCombo, activated( int ), this, updateMRL() ); CONNECT( ui.deviceCombo, activated( int ), this, updateButtons() );