From 0f2036ebeb3150b063a0001935d7d60440cea368 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Wed, 23 Nov 2011 19:22:32 +0200 Subject: [PATCH] Qt: do not prefix VCD chapter with 'E' --- modules/gui/qt4/components/open_panels.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/gui/qt4/components/open_panels.cpp b/modules/gui/qt4/components/open_panels.cpp index 8c62e33bc9..d032761bae 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 { -- 2.39.2