[vlc-commits] Qt: update correctly the MRL when checking BD radioButton
Jean-Baptiste Kempf
git at videolan.org
Fri Nov 18 23:15:45 CET 2011
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Nov 18 23:11:51 2011 +0100| [0ee6cb86c47334196cce466266b5837f8a09f144] | committer: Jean-Baptiste Kempf
Qt: update correctly the MRL when checking BD radioButton
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0ee6cb86c47334196cce466266b5837f8a09f144
---
modules/gui/qt4/components/open_panels.cpp | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt4/components/open_panels.cpp b/modules/gui/qt4/components/open_panels.cpp
index 7609eff..8c62e33 100644
--- a/modules/gui/qt4/components/open_panels.cpp
+++ b/modules/gui/qt4/components/open_panels.cpp
@@ -337,10 +337,11 @@ DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
ui.deviceCombo->setInsertPolicy( QComboBox::InsertAtTop );
/* CONNECTs */
- BUTTONACT( ui.dvdRadioButton, updateButtons() );
- BUTTONACT( ui.vcdRadioButton, updateButtons() );
+ BUTTONACT( ui.dvdRadioButton, updateButtons() );
+ BUTTONACT( ui.bdRadioButton, updateButtons() );
+ BUTTONACT( ui.vcdRadioButton, updateButtons() );
BUTTONACT( ui.audioCDRadioButton, updateButtons() );
- BUTTONACT( ui.dvdsimple, updateButtons() );
+ BUTTONACT( ui.dvdsimple, updateButtons() );
BUTTONACT( ui.browseDiscButton, browseDevice() );
BUTTON_SET_ACT_I( ui.ejectButton, "", toolbar/eject, qtr( "Eject the disc" ),
eject() );
More information about the vlc-commits
mailing list