]> git.sesse.net Git - vlc/commitdiff
Qt: Default Output address to 0.0.0.0 in HTTP and MMS
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 14 May 2009 21:03:24 +0000 (23:03 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 14 May 2009 21:03:56 +0000 (23:03 +0200)
modules/gui/qt4/components/sout/sout_widgets.cpp

index 7a9144be73abd53f55345fdbba13c7dd754d143a..324acb8d0c3087b833f57b923809736ea6bd9565 100644 (file)
@@ -144,6 +144,7 @@ HTTPDestBox::HTTPDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
     layout->addWidget(HTTPPortLabel, 2, 0, 1, 1);
 
     HTTPEdit = new QLineEdit(this);
+    HTTPEdit->setText( "0.0.0.0" );
 
     HTTPPort = new QSpinBox(this);
     HTTPPort->setMaximumSize(QSize(90, 16777215));
@@ -188,6 +189,7 @@ MMSHDestBox::MMSHDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
     layout->addWidget(MMSHPortLabel, 2, 0, 1, 1);
 
     MMSHEdit = new QLineEdit(this);
+    MMSHEdit->setText( "0.0.0.0" );
 
     MMSHPort = new QSpinBox(this);
     MMSHPort->setMaximumSize(QSize(90, 16777215));