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
aa409917
Commit
aa409917
authored
Mar 23, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: sort DVB-x alphabetically and select DVB-T by default
parent
c618ceaa
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+4
-4
No files found.
modules/gui/qt4/components/open_panels.cpp
View file @
aa409917
...
...
@@ -1018,14 +1018,14 @@ void CaptureOpenPanel::initialize()
dvbDevLayout
->
addWidget
(
dvbDeviceLabel
,
0
,
0
);
dvbDevLayout
->
addWidget
(
dvbCard
,
0
,
2
,
1
,
2
);
dvbs
=
new
QRadioButton
(
"DVB-S"
);
dvbs
->
setChecked
(
true
);
dvbc
=
new
QRadioButton
(
"DVB-C"
);
dvbs
=
new
QRadioButton
(
"DVB-S"
);
dvbt
=
new
QRadioButton
(
"DVB-T"
);
dvbt
->
setChecked
(
true
);
dvbDevLayout
->
addWidget
(
dvbTypeLabel
,
1
,
0
);
dvbDevLayout
->
addWidget
(
dvb
s
,
1
,
1
);
dvbDevLayout
->
addWidget
(
dvb
c
,
1
,
2
);
dvbDevLayout
->
addWidget
(
dvb
c
,
1
,
1
);
dvbDevLayout
->
addWidget
(
dvb
s
,
1
,
2
);
dvbDevLayout
->
addWidget
(
dvbt
,
1
,
3
);
/* DVB Props panel */
...
...
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