summaryrefslogtreecommitdiff
path: root/src/homepage.cpp
diff options
context:
space:
mode:
authorDario Freddi <drf@kde.org>2009-10-13 00:50:53 +0200
committerDario Freddi <drf@kde.org>2009-10-13 00:50:53 +0200
commitaa1193e1190ef8775ce13573f8ff57b8f876bdff (patch)
treeb8b166b3e540766e40a66427190ca7f9dd8e8c61 /src/homepage.cpp
parentRemove rekonq's custom proxy implementation to use KDE's proxy settings throu... (diff)
downloadrekonq-aa1193e1190ef8775ce13573f8ff57b8f876bdff.tar.xz
Small fixes (const issue, single char issue, file not ending with a new line), and adding the correct schema to kconfigxt files
Signed-off-by: Dario Freddi <drf@kde.org>
Diffstat (limited to 'src/homepage.cpp')
-rw-r--r--src/homepage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/homepage.cpp b/src/homepage.cpp
index 398308be..e8608241 100644
--- a/src/homepage.cpp
+++ b/src/homepage.cpp
@@ -223,7 +223,7 @@ QString HomePage::fillHistory()
{
QModelIndex son = model->index(j, 0, index );
history += son.data(HistoryModel::DateTimeRole).toDateTime().toString("hh:mm");
- history += " ";
+ history += ' ';
history += QString("<a href=\"") + son.data(HistoryModel::UrlStringRole).toString() + QString("\">") +
son.data().toString() + QString("</a>");
history += "<br />";