Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
ead6ddbb
Commit
ead6ddbb
authored
Dec 18, 2012
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: QPalette: fix obsoleted values
parent
03f57178
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/gui/qt4/styles/seekstyle.cpp
modules/gui/qt4/styles/seekstyle.cpp
+1
-1
modules/gui/qt4/util/input_slider.cpp
modules/gui/qt4/util/input_slider.cpp
+2
-2
No files found.
modules/gui/qt4/styles/seekstyle.cpp
View file @
ead6ddbb
...
...
@@ -137,7 +137,7 @@ void SeekStyle::drawComplexControl( ComplexControl cc, const QStyleOptionComplex
/* draw chapters tickpoints */
if
(
seekSlider
->
chapters
&&
seekSlider
->
inputLength
&&
groove
.
width
()
)
{
QColor
background
=
p
.
color
(
QPalette
::
Active
,
QPalette
::
Background
);
QColor
background
=
p
.
color
(
QPalette
::
Active
,
QPalette
::
Window
);
QColor
foreground
=
p
.
color
(
QPalette
::
Active
,
QPalette
::
WindowText
);
foreground
.
setHsv
(
foreground
.
hue
(),
(
background
.
saturation
()
+
foreground
.
saturation
()
)
/
2
,
...
...
modules/gui/qt4/util/input_slider.cpp
View file @
ead6ddbb
...
...
@@ -65,7 +65,7 @@ SeekSlider::SeekSlider( Qt::Orientation q, QWidget *_parent, bool _static )
// prepare some static colors
QPalette
p
=
palette
();
QColor
background
=
p
.
color
(
QPalette
::
Active
,
QPalette
::
Background
);
QColor
background
=
p
.
color
(
QPalette
::
Active
,
QPalette
::
Window
);
tickpointForeground
=
p
.
color
(
QPalette
::
Active
,
QPalette
::
WindowText
);
tickpointForeground
.
setHsv
(
tickpointForeground
.
hue
(),
(
background
.
saturation
()
+
tickpointForeground
.
saturation
()
)
/
2
,
...
...
@@ -469,7 +469,7 @@ SoundSlider::SoundSlider( QWidget *_parent, int _i_step,
for
(
int
i
=
colorList
.
count
();
i
<
12
;
i
++
)
colorList
.
append
(
"255"
);
background
=
palette
().
color
(
QPalette
::
Active
,
QPalette
::
Background
);
background
=
palette
().
color
(
QPalette
::
Active
,
QPalette
::
Window
);
foreground
=
palette
().
color
(
QPalette
::
Active
,
QPalette
::
WindowText
);
foreground
.
setHsv
(
foreground
.
hue
(),
(
background
.
saturation
()
+
foreground
.
saturation
()
)
/
2
,
...
...
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