┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/kitemviews/kfileitemmodel.cpp
diff options
context:
space:
mode:
authorLaurent Montel <[email protected]>2019-09-08 09:33:41 +0200
committerLaurent Montel <[email protected]>2019-09-08 09:33:41 +0200
commit81065795b78e06ec679ec0589fba7082e777ef2a (patch)
tree67acbba969c750a69734326179815474be25f42b /src/kitemviews/kfileitemmodel.cpp
parentdfe713edf0c3b0b44ff18c19ebd4d616a9004f48 (diff)
GIT_SILENT: minor qstring optimization
Diffstat (limited to 'src/kitemviews/kfileitemmodel.cpp')
-rw-r--r--src/kitemviews/kfileitemmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kitemviews/kfileitemmodel.cpp b/src/kitemviews/kfileitemmodel.cpp
index 091044c06..c11aae3d2 100644
--- a/src/kitemviews/kfileitemmodel.cpp
+++ b/src/kitemviews/kfileitemmodel.cpp
@@ -1607,7 +1607,7 @@ QHash<QByteArray, QVariant> KFileItemModel::retrieveData(const KFileItem& item,
if (m_requestRole[DestinationRole]) {
QString destination = item.linkDest();
if (destination.isEmpty()) {
- destination = QStringLiteral("-");
+ destination = QLatin1Char('-');
}
data.insert(sharedValue("destination"), destination);
}