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
6ef3c715
Commit
6ef3c715
authored
Jul 04, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use qt iso qt4
parent
be215a75
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
modules/gui/qt4/components/simple_preferences.cpp
modules/gui/qt4/components/simple_preferences.cpp
+3
-3
modules/gui/qt4/ui/sprefs_interface.ui
modules/gui/qt4/ui/sprefs_interface.ui
+2
-2
No files found.
modules/gui/qt4/components/simple_preferences.cpp
View file @
6ef3c715
...
...
@@ -549,12 +549,12 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
ui
.
skins
->
setChecked
(
true
);
}
else
{
/* defaults to qt */
ui
.
qt
4
->
setChecked
(
true
);
ui
.
qt
->
setChecked
(
true
);
}
free
(
psz_intf
);
optionWidgets
.
append
(
ui
.
skins
);
optionWidgets
.
append
(
ui
.
qt
4
);
optionWidgets
.
append
(
ui
.
qt
);
#if !defined( WIN32)
ui
.
stylesCombo
->
addItem
(
qtr
(
"System's default"
)
);
ui
.
stylesCombo
->
addItems
(
QStyleFactory
::
keys
()
);
...
...
@@ -572,7 +572,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
optionWidgets
.
append
(
NULL
);
#endif
radioGroup
=
new
QButtonGroup
(
this
);
radioGroup
->
addButton
(
ui
.
qt
4
,
0
);
radioGroup
->
addButton
(
ui
.
qt
,
0
);
radioGroup
->
addButton
(
ui
.
skins
,
1
);
CONNECT
(
radioGroup
,
buttonClicked
(
int
),
ui
.
styleStackedWidget
,
setCurrentIndex
(
int
)
);
...
...
modules/gui/qt4/ui/sprefs_interface.ui
View file @
6ef3c715
...
...
@@ -348,7 +348,7 @@
</spacer>
</item>
<item
row=
"0"
column=
"2"
>
<widget
class=
"QRadioButton"
name=
"qt
4
"
>
<widget
class=
"QRadioButton"
name=
"qt"
>
<property
name=
"toolTip"
>
<string>
This is VLC's default interface, with a native look and feel.
</string>
</property>
...
...
@@ -674,7 +674,7 @@
</customwidgets>
<tabstops>
<tabstop>
language
</tabstop>
<tabstop>
qt
4
</tabstop>
<tabstop>
qt
</tabstop>
<tabstop>
skins
</tabstop>
<tabstop>
fsController
</tabstop>
<tabstop>
minimalviewBox
</tabstop>
...
...
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