Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
5027135e
Commit
5027135e
authored
Nov 26, 2009
by
Rémi Denis-Courmont
Browse files
Qt4: fix default port numbers in streaming wizard
parent
a68b3396
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/components/sout/sout_widgets.cpp
View file @
5027135e
...
...
@@ -196,7 +196,7 @@ MMSHDestBox::MMSHDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
MMSHPort
->
setAlignment
(
Qt
::
AlignRight
|
Qt
::
AlignTrailing
|
Qt
::
AlignVCenter
);
MMSHPort
->
setMinimum
(
1
);
MMSHPort
->
setMaximum
(
65535
);
MMSHPort
->
setValue
(
1234
);
MMSHPort
->
setValue
(
8080
);
layout
->
addWidget
(
MMSHEdit
,
1
,
1
,
1
,
1
);
layout
->
addWidget
(
MMSHPort
,
2
,
1
,
1
,
1
);
...
...
@@ -286,7 +286,7 @@ RTPDestBox::RTPDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
RTPPort
->
setAlignment
(
Qt
::
AlignRight
|
Qt
::
AlignTrailing
|
Qt
::
AlignVCenter
);
RTPPort
->
setMinimum
(
1
);
RTPPort
->
setMaximum
(
65535
);
RTPPort
->
setValue
(
123
4
);
RTPPort
->
setValue
(
500
4
);
RTPPortAudio
=
new
QSpinBox
(
this
);
RTPPortAudio
->
setMaximumSize
(
QSize
(
90
,
16777215
));
...
...
@@ -362,7 +362,7 @@ ICEDestBox::ICEDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
ICEPort
->
setAlignment
(
Qt
::
AlignRight
|
Qt
::
AlignTrailing
|
Qt
::
AlignVCenter
);
ICEPort
->
setMinimum
(
1
);
ICEPort
->
setMaximum
(
65535
);
ICEPort
->
setValue
(
1234
);
ICEPort
->
setValue
(
8000
);
layout
->
addWidget
(
ICEEdit
,
1
,
1
,
1
,
1
);
layout
->
addWidget
(
ICEPort
,
2
,
1
,
1
,
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment