diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-10-15 00:21:09 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-10-15 00:21:09 +0200 |
commit | 0fbcfd6a77f41c0248f65537f615b4046433c6a0 (patch) | |
tree | 81bf41f48c1d31e613b4cf58104ab2229668d88e /src/websnap.cpp | |
parent | Merge commit 'refs/merge-requests/1806' of git://gitorious.org/rekonq/mainline (diff) | |
parent | favorites management (diff) | |
download | rekonq-0fbcfd6a77f41c0248f65537f615b4046433c6a0.tar.xz |
Merge commit 'refs/merge-requests/1805' of git://gitorious.org/rekonq/mainline into matgic
Diffstat (limited to 'src/websnap.cpp')
-rw-r--r-- | src/websnap.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/websnap.cpp b/src/websnap.cpp index 9e7108b0..83cfe88b 100644 --- a/src/websnap.cpp +++ b/src/websnap.cpp @@ -130,6 +130,20 @@ void WebSnap::saveResult(bool ok) } + +QString WebSnap::snapTitle() +{ + return m_page.mainFrame()->title(); + return QString(""); +} + + +QUrl WebSnap::snapUrl() +{ + return m_url; +} + + QPixmap WebSnap::previewImage() { return m_image; |