┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/kitemviews
diff options
context:
space:
mode:
authorLaurent Montel <[email protected]>2022-10-11 08:58:50 +0200
committerLaurent Montel <[email protected]>2022-10-11 08:58:50 +0200
commita490a6625bc56087ed5d3df5ef66bcf1d28550ff (patch)
treeac7057ff49b03aaa4d13419a7ebe60bd45cb89e6 /src/kitemviews
parenta50cc58e1b9586681e75602821316a23b982dab7 (diff)
Use QStringLiteral
Diffstat (limited to 'src/kitemviews')
-rw-r--r--src/kitemviews/kfileitemlistview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kitemviews/kfileitemlistview.cpp b/src/kitemviews/kfileitemlistview.cpp
index adcc2d793..26bc01465 100644
--- a/src/kitemviews/kfileitemlistview.cpp
+++ b/src/kitemviews/kfileitemlistview.cpp
@@ -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);