Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
e123d8b4
Commit
e123d8b4
authored
Dec 02, 2021
by
Riccardo Degli Esposti
🍌
Committed by
Tomaz Canabrava
Dec 29, 2021
Browse files
C-Style cast to static_cast
parent
b839987f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/colorscheme/ColorScheme.cpp
View file @
e123d8b4
...
...
@@ -526,7 +526,7 @@ void ColorScheme::write(KConfig &config) const
configGroup
.
writeEntry
(
"Opacity"
,
_opacity
);
configGroup
.
writeEntry
(
"Blur"
,
_blur
);
configGroup
.
writeEntry
(
"Wallpaper"
,
_wallpaper
->
path
());
configGroup
.
writeEntry
(
"FillStyle"
,
(
int
)
_wallpaper
->
style
());
configGroup
.
writeEntry
(
"FillStyle"
,
static_cast
<
int
>
(
_wallpaper
->
style
())
)
;
configGroup
.
writeEntry
(
EnableColorRandomizationKey
,
_colorRandomization
);
for
(
int
i
=
0
;
i
<
TABLE_COLORS
;
i
++
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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