From aa1193e1190ef8775ce13573f8ff57b8f876bdff Mon Sep 17 00:00:00 2001 From: Dario Freddi Date: Tue, 13 Oct 2009 00:50:53 +0200 Subject: 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 --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mainwindow.cpp') 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); -- cgit v1.2.1