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 | |
| 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>
| -rw-r--r-- | src/homepage.cpp | 2 | ||||
| -rw-r--r-- | src/mainwindow.cpp | 2 | ||||
| -rw-r--r-- | src/rekonq.kcfg | 5 | ||||
| -rw-r--r-- | src/webview.cpp | 2 | 
4 files changed, 7 insertions, 4 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 />"; diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 7601e80e..1b527d1a 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1020,7 +1020,7 @@ void MainWindow::clearPrivateData()              kDebug() << path;              QDir cacheDir(path);              QStringList fileList = cacheDir.entryList(); -            foreach(QString str, fileList) +            foreach(const QString &str, fileList)              {                  kDebug() << str;                  QFile file(path + str); diff --git a/src/rekonq.kcfg b/src/rekonq.kcfg index 9e854f76..c55fce9c 100644 --- a/src/rekonq.kcfg +++ b/src/rekonq.kcfg @@ -1,6 +1,9 @@  <?xml version="1.0" encoding="UTF-8"?>  <!DOCTYPE kcfg SYSTEM "http://www.kde.org/standards/kcfg/1.0/kcfg.dtd"> -<kcfg> +<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" +      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +      xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 +      http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >  <!-- Includes -->  <include>QtWebKit</include> diff --git a/src/webview.cpp b/src/webview.cpp index a2662399..9e06c9da 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -432,4 +432,4 @@ void WebView::keyPressEvent(QKeyEvent *event)          return;      }      QWebView::keyPressEvent(event); -}
\ No newline at end of file +} | 
