diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-11-10 01:03:40 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-11-10 23:34:02 +0100 |
commit | 5424f5b7a49d29a5d2aba0c9dc6165779442796c (patch) | |
tree | d17ced13affebc2e1fff1c8b3c9caab622399bb6 /kwebapp/webview.h | |
parent | Fix BUG:280627 Force QApplication to quit when no more available window (diff) | |
download | rekonq-5424f5b7a49d29a5d2aba0c9dc6165779442796c.tar.xz |
Web app's icon on kwebapp window
Heavily based on Furkan's patch on rbo
REVIEW: 103087
Diffstat (limited to 'kwebapp/webview.h')
-rw-r--r-- | kwebapp/webview.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kwebapp/webview.h b/kwebapp/webview.h index 536dba8c..a53010ed 100644 --- a/kwebapp/webview.h +++ b/kwebapp/webview.h @@ -27,13 +27,16 @@ // KDE Includes #include <KWebView> +// Qt Includes +#include <QUrl> + class WebView : public KWebView { Q_OBJECT public: - WebView(QWidget *parent = 0); + WebView(const QUrl &url, QWidget *parent = 0); private Q_SLOTS: void setTitle(const QString &); |