From 3c427654281e06e745ba5c4f62781469be991ac6 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Wed, 30 Sep 2009 12:14:28 +0200 Subject: Cleaning thumbs cache --- src/mainwindow.cpp | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index c5f3c556..53527a4f 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -67,6 +67,7 @@ #include #include #include +#include // Qt Includes #include @@ -990,6 +991,21 @@ void MainWindow::clearPrivateData() { QWebSettings::clearIconDatabase(); } + + if(clearWidget.homePageThumbs->isChecked()) + { + QString path = KStandardDirs::locateLocal("cache", QString("thumbs/rekonq"), true); + path.remove("rekonq"); + kDebug() << path; + QDir cacheDir(path); + QStringList fileList = cacheDir.entryList(); + foreach(QString str, fileList) + { + kDebug() << str; + QFile file(path + str); + file.remove(); + } + } } } @@ -1035,7 +1051,7 @@ void MainWindow::slotOpenActionUrl(QAction *action) void MainWindow::addPreferredLink() { QString name = currentTab()->title(); - QString url = currentTab()->url().path(); + QString url = currentTab()->url().pathOrUrl(); QStringList names = ReKonfig::previewNames(); QStringList urls = ReKonfig::previewUrls(); -- cgit v1.2.1