summaryrefslogtreecommitdiff
path: root/src/webpage.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-11-10 15:20:49 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-11-10 15:20:49 +0100
commit64cac4862842c7efa2dc7591ab5b672255e49e4c (patch)
treec0ea60adb6761b738315a04d82008c8c15f15f27 /src/webpage.h
parentfixing new mainWindow() behaviour, porting functions calling it (diff)
downloadrekonq-64cac4862842c7efa2dc7591ab5b672255e49e4c.tar.xz
(BIG commit) API change
I fixed rekonq API removing all slotName call switching to a proper getter call (so, name() functions)
Diffstat (limited to 'src/webpage.h')
-rw-r--r--src/webpage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webpage.h b/src/webpage.h
index 0d9868b9..45fc0c51 100644
--- a/src/webpage.h
+++ b/src/webpage.h
@@ -64,8 +64,8 @@ protected:
virtual QString userAgentForUrl(const QUrl& url) const;
protected Q_SLOTS:
- virtual void slotHandleUnsupportedContent(QNetworkReply *reply);
- virtual void slotDownloadRequested(const QNetworkRequest &request);
+ virtual void handleUnsupportedContent(QNetworkReply *reply);
+ virtual void downloadRequested(const QNetworkRequest &request);
private:
friend class WebView;