From 6ce25c6e5db5a90e272fb5ca1c665c65310c1b9f Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Tue, 8 Nov 2011 12:42:45 +0100 Subject: Remove postLaunch calls This will help a lot in having a clean/easy startup, also a bit less fast. Let's see if this helps stability... PS: To the bug reporter. I pushed a "NoPostLaunch" in rekonq git repo. Can you please try compiling and testing if this fixes your troubles on startup?? Many thanks for any help. Andrea. CCBUG:284356 --- src/webtab.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/webtab.h') diff --git a/src/webtab.h b/src/webtab.h index 5700ba7a..2e95fecf 100644 --- a/src/webtab.h +++ b/src/webtab.h @@ -58,7 +58,7 @@ public: explicit WebTab(QWidget *parent = 0); ~WebTab(); - inline WebView *view() const + WebView *view() const { return m_webView; } @@ -66,10 +66,11 @@ public: { return m_urlBar; } - inline WebPage *page() const + WebPage *page() const { return view()->page(); } + inline int progress() const { return m_progress; @@ -102,6 +103,7 @@ private Q_SLOTS: Q_SIGNALS: void loadProgressing(); void titleChanged(const QString &); + void zoomChanged(int); private: KUrl extractOpensearchUrl(QWebElement e); -- cgit v1.2.1