summaryrefslogtreecommitdiff
path: root/src/mainwindow.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/mainwindow.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/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
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);