diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-09-29 17:02:39 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-09-29 17:04:28 +0200 |
commit | ed9d2b80aa3fa7a190a2be2989215935cdf09b8d (patch) | |
tree | 26013ecf1ac11f2c2af983fc8025c540016a2672 /src/webpage.h | |
parent | Merge branch 'master' of gitorious.org:rekonq/mainline (diff) | |
download | rekonq-ed9d2b80aa3fa7a190a2be2989215935cdf09b8d.tar.xz |
HACK: fix Chinese sites encoding, as suggested by Weng Xuetian in bug #251264
and by... Wikipedia!! ;)
CCBUG: 251264
Xeng, does this fix your issue?
Diffstat (limited to 'src/webpage.h')
-rw-r--r-- | src/webpage.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/webpage.h b/src/webpage.h index 5b79275a..b6e0c531 100644 --- a/src/webpage.h +++ b/src/webpage.h @@ -58,7 +58,7 @@ public: inline bool isOnRekonqPage() const { return _isOnRekonqPage; }; inline void setIsOnRekonqPage(bool b) { _isOnRekonqPage = b; }; -public slots: +public Q_SLOTS: void downloadAllContentsWithKGet(QPoint); virtual void downloadRequest(const QNetworkRequest &request); @@ -71,9 +71,10 @@ protected: const QNetworkRequest &request, NavigationType type); -private slots: +private Q_SLOTS: void handleUnsupportedContent(QNetworkReply *reply); void manageNetworkErrors(QNetworkReply *reply); + void loadStarted(); void loadFinished(bool); void showSSLInfo(QPoint); void updateImage(bool ok); |