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
System
Dolphin
Commits
a490a662
Commit
a490a662
authored
Oct 11, 2022
by
Laurent Montel
Browse files
Use QStringLiteral
parent
a50cc58e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/kitemviews/kfileitemlistview.cpp
View file @
a490a662
...
...
@@ -185,7 +185,7 @@ QPixmap KFileItemListView::createDragPixmap(const KItemSet& indexes) const
if
(
pixmap
.
isNull
())
{
QIcon
icon
=
QIcon
::
fromTheme
(
model
()
->
data
(
index
).
value
(
"iconName"
).
toString
());
if
(
icon
.
isNull
())
{
icon
=
QIcon
::
fromTheme
(
"unknown"
);
icon
=
QIcon
::
fromTheme
(
QStringLiteral
(
"unknown"
)
)
;
}
if
(
!
icon
.
isNull
())
{
pixmap
=
icon
.
pixmap
(
size
,
size
);
...
...
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