Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
f06a1f7a
Commit
f06a1f7a
authored
Mar 08, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix max UDP port number
parent
3bde1ed6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/gui/wxwindows/open.cpp
modules/gui/wxwindows/open.cpp
+2
-2
modules/gui/wxwindows/streamout.cpp
modules/gui/wxwindows/streamout.cpp
+1
-1
No files found.
modules/gui/wxwindows/open.cpp
View file @
f06a1f7a
...
@@ -720,7 +720,7 @@ wxPanel *OpenDialog::NetPanel( wxWindow* parent )
...
@@ -720,7 +720,7 @@ wxPanel *OpenDialog::NetPanel( wxWindow* parent )
wxString
::
Format
(
wxT
(
"%d"
),
i_net_ports
[
0
]),
wxString
::
Format
(
wxT
(
"%d"
),
i_net_ports
[
0
]),
wxDefaultPosition
,
wxDefaultSize
,
wxDefaultPosition
,
wxDefaultSize
,
wxSP_ARROW_KEYS
,
wxSP_ARROW_KEYS
,
0
,
16000
,
i_net_ports
[
0
]
);
0
,
65535
,
i_net_ports
[
0
]
);
subpanel_sizer
->
Add
(
label
,
0
,
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
subpanel_sizer
->
Add
(
label
,
0
,
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
subpanel_sizer
->
Add
(
net_ports
[
0
],
1
,
subpanel_sizer
->
Add
(
net_ports
[
0
],
1
,
...
@@ -748,7 +748,7 @@ wxPanel *OpenDialog::NetPanel( wxWindow* parent )
...
@@ -748,7 +748,7 @@ wxPanel *OpenDialog::NetPanel( wxWindow* parent )
wxString
::
Format
(
wxT
(
"%d"
),
i_net_ports
[
1
]),
wxString
::
Format
(
wxT
(
"%d"
),
i_net_ports
[
1
]),
wxDefaultPosition
,
wxDefaultSize
,
wxDefaultPosition
,
wxDefaultSize
,
wxSP_ARROW_KEYS
,
wxSP_ARROW_KEYS
,
0
,
16000
,
i_net_ports
[
1
]
);
0
,
65535
,
i_net_ports
[
1
]
);
subpanel_sizer
->
Add
(
label
,
0
,
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
subpanel_sizer
->
Add
(
label
,
0
,
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
subpanel_sizer
->
Add
(
net_ports
[
1
],
1
,
subpanel_sizer
->
Add
(
net_ports
[
1
],
1
,
...
...
modules/gui/wxwindows/streamout.cpp
View file @
f06a1f7a
...
@@ -495,7 +495,7 @@ wxPanel *SoutDialog::AccessPanel( wxWindow* parent )
...
@@ -495,7 +495,7 @@ wxPanel *SoutDialog::AccessPanel( wxWindow* parent )
wxString
::
Format
(
wxT
(
"%d"
),
val
),
wxString
::
Format
(
wxT
(
"%d"
),
val
),
wxDefaultPosition
,
wxDefaultSize
,
wxDefaultPosition
,
wxDefaultSize
,
wxSP_ARROW_KEYS
,
wxSP_ARROW_KEYS
,
0
,
16000
,
val
);
0
,
65535
,
val
);
subpanel_sizer
->
Add
(
label
,
0
,
subpanel_sizer
->
Add
(
label
,
0
,
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
...
...
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