[vlc-devel] commit: Qt: Default Output address to 0.0.0.0 in HTTP and MMS ( Jean-Baptiste Kempf )

git version control git at videolan.org
Thu May 14 23:03:58 CEST 2009


vlc | branch: 1.0-bugfix | Jean-Baptiste Kempf <jb at videolan.org> | Thu May 14 23:03:24 2009 +0200| [e936fbd6171071a9fbf7b3f6d079201a6f9ecbe0] | committer: Jean-Baptiste Kempf 

Qt: Default Output address to 0.0.0.0 in HTTP and MMS

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

 modules/gui/qt4/components/sout/sout_widgets.cpp |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/modules/gui/qt4/components/sout/sout_widgets.cpp b/modules/gui/qt4/components/sout/sout_widgets.cpp
index 7a9144b..324acb8 100644
--- a/modules/gui/qt4/components/sout/sout_widgets.cpp
+++ b/modules/gui/qt4/components/sout/sout_widgets.cpp
@@ -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));




More information about the vlc-devel mailing list