[vlc-commits] Qt: do not prefix VCD chapter with 'E'

Rémi Denis-Courmont git at videolan.org
Wed Nov 23 18:23:07 CET 2011


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Nov 23 19:22:32 2011 +0200| [0f2036ebeb3150b063a0001935d7d60440cea368] | committer: Rémi Denis-Courmont

Qt: do not prefix VCD chapter with 'E'

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

 modules/gui/qt4/components/open_panels.cpp |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/modules/gui/qt4/components/open_panels.cpp b/modules/gui/qt4/components/open_panels.cpp
index 8c62e33..d032761 100644
--- a/modules/gui/qt4/components/open_panels.cpp
+++ b/modules/gui/qt4/components/open_panels.cpp
@@ -526,9 +526,8 @@ void DiscOpenPanel::updateMRL()
     } else if ( ui.vcdRadioButton->isChecked() ) {
         mrl = "vcd://" LOCALHOST + discPath;
 
-        if( ui.titleSpin->value() > 0 ) {
-            mrl += QString("@E%1").arg( ui.titleSpin->value() );
-        }
+        if( ui.titleSpin->value() > 0 )
+            mrl += QString("@%1").arg( ui.titleSpin->value() );
 
     /* CDDA */
     } else {



More information about the vlc-commits mailing list