diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-01-26 02:09:05 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-01-26 02:09:05 +0100 |
commit | 3bbfba5e0757af9c02dc5cec637e51b67365a896 (patch) | |
tree | 228b677ae0d1f00d93cbf49d35875216c62a2a12 /src/webtab.cpp | |
parent | disconnect also webpage signals on close! (diff) | |
download | rekonq-3bbfba5e0757af9c02dc5cec637e51b67365a896.tar.xz |
MultiThreaded rekonq !!
Yeah, you're reading well...
rekonq is using multithreading for the loadUrl slot. This (in theory)
should mean: "NO MORE UI FREEZES ON LOAD URLS"
:D
Diffstat (limited to 'src/webtab.cpp')
-rw-r--r-- | src/webtab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webtab.cpp b/src/webtab.cpp index 3ff69a2f..b1f2cdfc 100644 --- a/src/webtab.cpp +++ b/src/webtab.cpp @@ -108,7 +108,7 @@ WebView *WebTab::view() WebPage *WebTab::page() { - return m_view->page(); + return m_view->page(); // FIXME } |