diff options
author | Johannes Troscher <fritz_van_tom@hotmail.com> | 2011-11-27 12:18:33 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-11-27 12:18:33 +0100 |
commit | 6390d8ea58021f67257527cf98af5074656e0838 (patch) | |
tree | 2defdd7055541f41da100a81aa715bfb10ce8cc9 /src/mainwindow.cpp | |
parent | Merge branch 'bkGroupMidClick' (diff) | |
download | rekonq-6390d8ea58021f67257527cf98af5074656e0838.tar.xz |
Unifies macro style
REVIEW: 103242
REVIEWED-BY: adjam
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index ff500b4a..9ba7ee79 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1295,7 +1295,7 @@ void MainWindow::clearPrivateData() path.remove("rekonq"); QDir cacheDir(path); QStringList fileList = cacheDir.entryList(); - foreach(const QString & str, fileList) + Q_FOREACH(const QString & str, fileList) { QFile file(path + str); file.remove(); |