summaryrefslogtreecommitdiff
path: root/src/webtab.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-02-24 15:55:23 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-02-24 15:55:23 +0100
commit10d01088d7189de8def4dab1e73a043607859b58 (patch)
treec7a52223cc550b9d890c84737123b1e29213d7c1 /src/webtab.h
parentrekonq 0.3.95 (diff)
downloadrekonq-10d01088d7189de8def4dab1e73a043607859b58.tar.xz
Again, saving one WebView pointer for each tab
Diffstat (limited to 'src/webtab.h')
-rw-r--r--src/webtab.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/webtab.h b/src/webtab.h
index d54ae5f8..8f434ee7 100644
--- a/src/webtab.h
+++ b/src/webtab.h
@@ -31,7 +31,9 @@
// KDE Includes
#include <KUrl>
-#include <KWebView>
+
+// Qt Includes
+#include <QWidget>
// Forward Declarations
class WebPage;
@@ -48,7 +50,7 @@ public:
WebView *view();
WebPage *page();
- KUrl url() const;
+ KUrl url();
QString lastStatusBarText() const;
int progress();
void createPreviewSelectorBar(int index);
@@ -61,7 +63,6 @@ private slots:
void createWalletBar(const QString &, const QUrl &);
private:
- WebView *const m_view;
int m_progress;
QString m_statusBarText;
};