diff options
| author | Laurent Montel <[email protected]> | 2022-10-11 08:58:50 +0200 |
|---|---|---|
| committer | Laurent Montel <[email protected]> | 2022-10-11 08:58:50 +0200 |
| commit | a490a6625bc56087ed5d3df5ef66bcf1d28550ff (patch) | |
| tree | ac7057ff49b03aaa4d13419a7ebe60bd45cb89e6 /src/kitemviews/kfileitemlistview.cpp | |
| parent | a50cc58e1b9586681e75602821316a23b982dab7 (diff) | |
Use QStringLiteral
Diffstat (limited to 'src/kitemviews/kfileitemlistview.cpp')
| -rw-r--r-- | src/kitemviews/kfileitemlistview.cpp | 2 |
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); |
