[vlc-devel] commit: Correct behaviour of passing a MRL to Sout dialog. Really close #1998 (Jean-Baptiste Kempf )

git version control git at videolan.org
Sun Sep 7 20:05:43 CEST 2008


vlc | branch: 0.9-bugfix | Jean-Baptiste Kempf <jb at videolan.org> | Sun Sep  7 11:07:00 2008 -0700| [56c38ae8d2f4a31aa2145997a7bb603a50a11811] | committer: Jean-Baptiste Kempf 

Correct behaviour of passing a MRL to Sout dialog. Really close #1998

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

 modules/gui/qt4/dialogs/open.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/dialogs/open.cpp b/modules/gui/qt4/dialogs/open.cpp
index be5628f..0643c37 100644
--- a/modules/gui/qt4/dialogs/open.cpp
+++ b/modules/gui/qt4/dialogs/open.cpp
@@ -364,7 +364,7 @@ void OpenDialog::stream( bool b_transcode_only )
         for( int i = 1; i < listMRL.size(); i++ )
         {
             if( listMRL[i].at( 0 ) == ':' )
-                soutMRL.append( listMRL[i] );
+                soutMRL.append( " " + listMRL[i] );
             else
                 break;
         }




More information about the vlc-devel mailing list