summaryrefslogtreecommitdiff
path: root/src/webpage.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-12-18 10:23:36 +0100
committerAndrea Diamantini <adjam7@gmail.com>2011-12-18 10:24:11 +0100
commit6f60d002491a3b437afb068b227d33d5b23772d2 (patch)
treec1a71fb9d73db08a1431e5203660c7ff2acb843b /src/webpage.cpp
parentRevert a small part of commit 3e59ea5cab2a097 (diff)
downloadrekonq-6f60d002491a3b437afb068b227d33d5b23772d2.tar.xz
Why taking risks? Deleting things in the more appropriate place.
Diffstat (limited to 'src/webpage.cpp')
-rw-r--r--src/webpage.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp
index 1b7241f2..772cffb1 100644
--- a/src/webpage.cpp
+++ b/src/webpage.cpp
@@ -48,6 +48,7 @@
#include "newtabpage.h"
#include "urlbar.h"
#include "webpluginfactory.h"
+#include "websnap.h"
#include "webtab.h"
#include "searchengine.h"
#include "sslwidget.h"
@@ -167,6 +168,11 @@ WebPage::WebPage(QWidget *parent)
WebPage::~WebPage()
{
disconnect();
+
+ QPixmap preview = WebSnap::renderClosingPagePreview(*this);
+ QString path = WebSnap::imagePathFromUrl(mainFrame()->url().toString());
+ QFile::remove(path);
+ preview.save(path);
}