summaryrefslogtreecommitdiff
path: root/src/webpage.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-12-21 00:40:43 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-12-21 00:40:43 +0100
commit533769b663fee1ba99364c7c0c3431b72b8e9abe (patch)
tree0c9e2dd89827b33f95e7de165f71d934d1af72a8 /src/webpage.cpp
parentMerge commit 'refs/merge-requests/76' of git://gitorious.org/rekonq/mainline ... (diff)
downloadrekonq-533769b663fee1ba99364c7c0c3431b72b8e9abe.tar.xz
Improvements in ftp handling:
- show dirs - download files
Diffstat (limited to 'src/webpage.cpp')
-rw-r--r--src/webpage.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp
index 00f71805..cdb72caa 100644
--- a/src/webpage.cpp
+++ b/src/webpage.cpp
@@ -80,6 +80,9 @@ WebPage::WebPage(QObject *parent)
connect(this, SIGNAL(unsupportedContent(QNetworkReply *)), this, SLOT(handleUnsupportedContent(QNetworkReply *)));
connect(this, SIGNAL(loadFinished(bool)), this, SLOT(loadFinished(bool)));
+
+ // protocol handler signals
+ connect(&m_protHandler, SIGNAL(downloadUrl(const KUrl &)), this, SLOT(downloadUrl(const KUrl &)));
}