summaryrefslogtreecommitdiff
path: root/src/webview.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-02-19 12:10:25 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-02-19 12:10:25 +0100
commita013b8f0a260ebedbd74f76bd43b0384ca5e2bc4 (patch)
treeb12e2c230b64a601ffa3a9afd7b10bf5c1fffca4 /src/webview.h
parent.. and check that the changes you do are right. (diff)
downloadrekonq-a013b8f0a260ebedbd74f76bd43b0384ca5e2bc4.tar.xz
Save memory. One WebPage pointer less for each WebView :)
Diffstat (limited to 'src/webview.h')
-rw-r--r--src/webview.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/webview.h b/src/webview.h
index 1598b19c..6d75c549 100644
--- a/src/webview.h
+++ b/src/webview.h
@@ -46,7 +46,7 @@ public:
explicit WebView(QWidget *parent);
~WebView();
- WebPage *page() { return m_page; }
+ WebPage *page();
QPoint mousePos();
protected:
@@ -71,7 +71,6 @@ signals:
void loadUrl(const KUrl &, const Rekonq::OpenType &);
private:
- WebPage *const m_page;
QPoint m_mousePos;
};