From fad075543c2b4a647ccab41bd30f2671bf57185b Mon Sep 17 00:00:00 2001 From: Akos Polster Date: Mon, 25 Oct 2010 01:24:21 +0200 Subject: [PATCH] . --- searchresultsdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/searchresultsdialog.cpp b/searchresultsdialog.cpp index eb447a0..302d0d8 100644 --- a/searchresultsdialog.cpp +++ b/searchresultsdialog.cpp @@ -13,7 +13,7 @@ SearchResultsDialog::SearchResultsDialog(const QList results_, if (result.authors.length()) { author = result.authors[0]; } - data.append(author + "\n" + result.title); + data.append(result.title + "\n" + author); } QStringListModel *model = new QStringListModel(data, this); -- 1.7.9.5