diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-22 01:42:58 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-22 01:42:58 +0200 |
commit | 1d2e4946e7650466a21acc6d2abb19740a63d431 (patch) | |
tree | 411406e7a02e77492a215904316b64f3fa55b73a /src/urlbar | |
parent | Fix embed kpart bahevior. Try embedding just when there is a ReadOnlyPart (diff) | |
download | rekonq-1d2e4946e7650466a21acc6d2abb19740a63d431.tar.xz |
Fix, improve and clean WebSnap API.
This led me to a little polish in the classes using
the WebSnap facilities and to change the mechanism
the NewTabPage retrieves images from the "cache"
Diffstat (limited to 'src/urlbar')
-rw-r--r-- | src/urlbar/listitem.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/urlbar/listitem.cpp b/src/urlbar/listitem.cpp index a182c1a2..987d070f 100644 --- a/src/urlbar/listitem.cpp +++ b/src/urlbar/listitem.cpp @@ -242,12 +242,11 @@ PreviewLabel::PreviewLabel(const QString &url, int width, int height, QWidget *p setFixedSize(width, height); setFrameStyle(QFrame::StyledPanel | QFrame::Raised); - KUrl u = WebSnap::fileForUrl( QUrl(url) ); - QString path = u.pathOrUrl(); - if(QFile::exists(path)) + KUrl u = KUrl(url); + if( WebSnap::existsImage( KUrl(u) ) ) { QPixmap preview; - preview.load(path); + preview.load( WebSnap::imagePathFromUrl(u) ); setPixmap(preview.scaled(width, height, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); } } |