diff options
author | Dario Freddi <drf@kde.org> | 2009-10-13 00:50:53 +0200 |
---|---|---|
committer | Dario Freddi <drf@kde.org> | 2009-10-13 00:50:53 +0200 |
commit | aa1193e1190ef8775ce13573f8ff57b8f876bdff (patch) | |
tree | b8b166b3e540766e40a66427190ca7f9dd8e8c61 /src/homepage.cpp | |
parent | Remove rekonq's custom proxy implementation to use KDE's proxy settings throu... (diff) | |
download | rekonq-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.cpp | 2 |
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 />"; |