summaryrefslogtreecommitdiffstats
path: root/src/libraries/qmfclient/qmailthreadlistmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libraries/qmfclient/qmailthreadlistmodel.cpp')
-rw-r--r--src/libraries/qmfclient/qmailthreadlistmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libraries/qmfclient/qmailthreadlistmodel.cpp b/src/libraries/qmfclient/qmailthreadlistmodel.cpp
index b2541b53..9d205771 100644
--- a/src/libraries/qmfclient/qmailthreadlistmodel.cpp
+++ b/src/libraries/qmfclient/qmailthreadlistmodel.cpp
@@ -271,7 +271,7 @@ QVariant QMailThreadListModel::data(const QModelIndex& index, int role) const
foreach (const QMailAddress& address, thread.senders()) {
senders << address.name();
}
- return senders.join(", ");
+ return senders.join(QLatin1String(", "));
}
case ThreadLastDateRole:
return thread.lastDate().toLocalTime();