diff options
author | Lionel Chauvin <megabigbug@yahoo.fr> | 2009-08-10 23:31:11 +0200 |
---|---|---|
committer | Lionel Chauvin <megabigbug@yahoo.fr> | 2009-08-10 23:31:11 +0200 |
commit | c04747a9490d39e97c7800a8b19fda40654970f3 (patch) | |
tree | 19afa48b70d24bbbd60ba7d53d98f95ee93b3929 /src/webpage.h | |
parent | better handle network errors (diff) | |
download | rekonq-c04747a9490d39e97c7800a8b19fda40654970f3.tar.xz |
prevent icon loading when error page
Diffstat (limited to 'src/webpage.h')
-rw-r--r-- | src/webpage.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/webpage.h b/src/webpage.h index 5adad291..a8efb95a 100644 --- a/src/webpage.h +++ b/src/webpage.h @@ -36,11 +36,12 @@ // Qt Includes #include <QWebPage> +#include <QUrl> // Forward Declarations class QWebFrame; class QNetworkReply; - +class QUrl; class WebPage : public QWebPage { @@ -89,6 +90,8 @@ private: // keyboard/mouse modifiers Qt::KeyboardModifiers m_keyboardModifiers; Qt::MouseButtons m_pressedButtons; + + QUrl m_requestedUrl; }; #endif |