┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2012-04-07 15:09:44 +0200
committerPeter Penz <[email protected]>2012-04-07 15:09:44 +0200
commit305ecd86f9cdfd7d4e3e96fb5b7f3daab72c6ba5 (patch)
tree69d2ad690f84448db89eb6b62780ca1457b85917 /src
parent94a44c03e45ca9715d7dd4370f2b0daf067f835c (diff)
Just use "-" instead of "No destination" for the destination-role
Diffstat (limited to 'src')
-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 ce4872a85..7644ae5ef 100644
--- a/src/kitemviews/kfileitemmodel.cpp
+++ b/src/kitemviews/kfileitemmodel.cpp
@@ -1187,7 +1187,7 @@ QHash<QByteArray, QVariant> KFileItemModel::retrieveData(const KFileItem& item)
if (m_requestRole[DestinationRole]) {
QString destination = item.linkDest();
if (destination.isEmpty()) {
- destination = i18nc("@item:intable", "No destination");
+ destination = QLatin1String("-");
}
data.insert("destination", destination);
}