diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-02-24 15:55:23 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-02-24 15:55:23 +0100 |
commit | 10d01088d7189de8def4dab1e73a043607859b58 (patch) | |
tree | c7a52223cc550b9d890c84737123b1e29213d7c1 /src/webtab.h | |
parent | rekonq 0.3.95 (diff) | |
download | rekonq-10d01088d7189de8def4dab1e73a043607859b58.tar.xz |
Again, saving one WebView pointer for each tab
Diffstat (limited to 'src/webtab.h')
-rw-r--r-- | src/webtab.h | 7 |
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; }; |