Skip to content
GitLab
Menu
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
fb2aea29
Commit
fb2aea29
authored
Mar 09, 2008
by
Robert Knight
Browse files
Fix double -> int conversion warning
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=783791
parent
05fdc151
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/EditProfileDialog.cpp
View file @
fb2aea29
...
...
@@ -1138,7 +1138,7 @@ void ColorSchemeViewDelegate::paint(QPainter* painter, const QStyleOptionViewIte
gradient
.
setColorAt
(
0
,
QColor
(
255
,
255
,
255
,
90
)
);
gradient
.
setColorAt
(
1
,
Qt
::
transparent
);
painter
->
setBrush
(
gradient
);
painter
->
drawRoundRect
(
backgroundRect
,
4
.0
,
30
.0
);
painter
->
drawRoundRect
(
backgroundRect
,
4
,
30
);
//const bool isChecked = index.data(Qt::CheckStateRole) == Qt::Checked;
const
bool
isSelected
=
option
.
state
&
QStyle
::
State_Selected
;
...
...
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