X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fqt4%2Fcomponents%2Fopen.cpp;h=f91ff544706038fdd9e08f54deea4650783eb1a9;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=8bba25eb43e4cb0d4831cde885f196de77d2adc3;hpb=3305b049e7f587b23359a1c9047fb5763d19c1dc;p=vlc diff --git a/modules/gui/qt4/components/open.cpp b/modules/gui/qt4/components/open.cpp index 8bba25eb43..f91ff54470 100644 --- a/modules/gui/qt4/components/open.cpp +++ b/modules/gui/qt4/components/open.cpp @@ -547,7 +547,7 @@ CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) : jackDevLayout->addWidget( jackChannels, 1, 1 ); /* Jack Props panel */ - + /* Selected ports */ QLabel *jackPortsLabel = new QLabel( qtr( "Selected ports :" ) ); jackPropLayout->addWidget( jackPortsLabel, 0 , 0 ); @@ -555,7 +555,7 @@ CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) : jackPortsSelected = new QLineEdit( qtr( ".*") ); jackPortsSelected->setAlignment( Qt::AlignRight ); jackPropLayout->addWidget( jackPortsSelected, 0, 1 ); - + /* Caching */ QLabel *jackCachingLabel = new QLabel( qtr( "Input caching :" ) ); jackPropLayout->addWidget( jackCachingLabel, 1 , 0 ); @@ -565,15 +565,15 @@ CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) : jackCaching->setValue(1000); jackCaching->setAlignment( Qt::AlignRight ); jackPropLayout->addWidget( jackCaching, 1 , 1 ); - + /* Pace */ jackPace = new QCheckBox(qtr( "Use VLC pace" )); jackPropLayout->addWidget( jackPace, 2, 1 ); - + /* Auto Connect */ jackConnect = new QCheckBox( qtr( "Auto connnection" )); jackPropLayout->addWidget( jackConnect, 3, 1 ); - + /* Jack CONNECTs */ CuMRL( jackChannels, valueChanged( int ) ); CuMRL( jackCaching, valueChanged( int ) ); @@ -886,7 +886,7 @@ void CaptureOpenPanel::updateMRL() } /** - * Update the Buttons (show/hide) for the GUI as all device type don't + * Update the Buttons (show/hide) for the GUI as all device type don't * use the same ui. elements. **/ void CaptureOpenPanel::updateButtons()