diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-12-18 10:23:36 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-12-18 10:24:11 +0100 |
commit | 6f60d002491a3b437afb068b227d33d5b23772d2 (patch) | |
tree | c1a71fb9d73db08a1431e5203660c7ff2acb843b /src/webpage.cpp | |
parent | Revert a small part of commit 3e59ea5cab2a097 (diff) | |
download | rekonq-6f60d002491a3b437afb068b227d33d5b23772d2.tar.xz |
Why taking risks? Deleting things in the more appropriate place.
Diffstat (limited to 'src/webpage.cpp')
-rw-r--r-- | src/webpage.cpp | 6 |
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); } |