diff options
author | Andrea Di Menna <ninniuz@gmail.com> | 2011-09-27 10:09:15 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-09-27 10:09:15 +0200 |
commit | 7055c0b38a828e827c6eac4cbb041f51bb575e0b (patch) | |
tree | d01ab5e7dd2f5838baaf4e5cb8eb84ddb16409a3 /src/webpage.cpp | |
parent | Remove a minor focus glitch on webpage load (diff) | |
download | rekonq-7055c0b38a828e827c6eac4cbb041f51bb575e0b.tar.xz |
Fix KGet "list all links" feature
the contextual menu action was not working cause of a wrong
signal/slot connection.
This commit fixes it :)
REVIEW: 102708
REVIEWED-BY: adjam
Diffstat (limited to 'src/webpage.cpp')
-rw-r--r-- | src/webpage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp index d1f0bf9f..a7523c19 100644 --- a/src/webpage.cpp +++ b/src/webpage.cpp @@ -697,7 +697,7 @@ void WebPage::downloadUrl(const KUrl &url) } -void WebPage::downloadAllContentsWithKGet(QPoint) +void WebPage::downloadAllContentsWithKGet() { QSet<QString> contents; KUrl baseUrl(currentFrame()->url()); |