summaryrefslogtreecommitdiffstats
path: root/framework/src
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src')
-rw-r--r--framework/src/domain/maillistmodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/src/domain/maillistmodel.cpp b/framework/src/domain/maillistmodel.cpp
index 2d9f3147..fa0dda04 100644
--- a/framework/src/domain/maillistmodel.cpp
+++ b/framework/src/domain/maillistmodel.cpp
@@ -295,8 +295,8 @@ void MailListModel::setMail(const QVariant &variant)
295 mFetchMails = true; 295 mFetchMails = true;
296 mFetchedMails.clear(); 296 mFetchedMails.clear();
297 qDebug() << "Running mail query: " << mail->resourceInstanceIdentifier() << mail->identifier(); 297 qDebug() << "Running mail query: " << mail->resourceInstanceIdentifier() << mail->identifier();
298 //Latest mail on top 298 //Latest mail at the bottom
299 sort(0, Qt::DescendingOrder); 299 sort(0, Qt::AscendingOrder);
300 runQuery(query); 300 runQuery(query);
301} 301}
302 302