diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-12-21 00:00:40 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-12-21 00:00:40 +0100 |
commit | 0099d93fea98863bed22cf52ef5f7c02c1f09d2b (patch) | |
tree | fe92142a6c77ab732ccda201795dacea464d1662 | |
parent | Merge commit 'refs/merge-requests/75' of git://gitorious.org/rekonq/mainline ... (diff) | |
parent | download one link with org.kde.kget.main.addTransfer (diff) | |
download | rekonq-0099d93fea98863bed22cf52ef5f7c02c1f09d2b.tar.xz |
Merge commit 'refs/merge-requests/76' of git://gitorious.org/rekonq/mainline into m75
-rw-r--r-- | src/webview.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index f766ab58..a6ebd08d 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -400,9 +400,10 @@ void WebView::downloadLinkWithKGet() QDBusInterface kget("org.kde.kget", "/KGet", "org.kde.kget.main"); KAction *a = qobject_cast<KAction*>(sender()); - QList<QString> contentList; - contentList.append(a->data().toUrl().toString()); - kget.call("importLinks", QVariant(contentList)); + QString url = a->data().toUrl().toString(QUrl::RemoveFragment); + QString filename = QDir::homePath()+"/"+url.remove(0,url.lastIndexOf("/")+1); + kDebug() << filename; + kget.call("addTransfer", a->data().toUrl().toString(), filename, true); } |