diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-09-18 19:22:51 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-18 19:22:51 +0200 |
commit | e2f57546558b2d90147cced3beee541e7e1cae9e (patch) | |
tree | ed1f7b355450f2ca45d116e036a02a82e42f3a44 /src/websnap.h | |
parent | Fixed options show recently closed tabs / show recent history (diff) | |
download | rekonq-e2f57546558b2d90147cced3beee541e7e1cae9e.tar.xz |
Faster loading..
Diffstat (limited to 'src/websnap.h')
-rw-r--r-- | src/websnap.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/websnap.h b/src/websnap.h index 7e77da49..2bcdfef8 100644 --- a/src/websnap.h +++ b/src/websnap.h @@ -45,7 +45,7 @@ class WebSnap : public QObject Q_OBJECT public: - WebSnap(const KUrl &url); + WebSnap(const QString &url, const QString &pos); QPixmap previewImage(); @@ -58,9 +58,10 @@ private slots: private: QWebPage m_page; - KUrl m_url; QPixmap m_image; - QString m_fileName; + + QString m_url; + QString m_pos; }; #endif // WEB_SNAP_H |