diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-07-26 18:51:13 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-07-26 18:51:13 +0200 |
commit | c2cf251dfe808e1a4e336dbf1cddc645d63c2e2f (patch) | |
tree | f038c3a38a7532cf15f1d988ac4ad9b6954228e3 /src/mainview.cpp | |
parent | Fixing a bit GooWiki actions and updating TODO (diff) | |
download | rekonq-c2cf251dfe808e1a4e336dbf1cddc645d63c2e2f.tar.xz |
A lot of fixes here:
- CTRL + click browsing
- mouse wheel gestures
- cleaning a bit web* classes
This has been possible restoring some code from rekonq 0.1 web classes
implementation.
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index f059e42b..bc33c1c0 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -309,9 +309,12 @@ void MainView::slotCurrentChanged(int index) this, SIGNAL(loadProgress(int))); } - connect(webView->page(), SIGNAL(statusBarMessage(const QString&)), this, SIGNAL(showStatusBarMessage(const QString&))); - connect(webView->page(), SIGNAL(linkHovered(const QString&, const QString&, const QString&)), this, SIGNAL(linkHovered(const QString&))); - connect(webView, SIGNAL(loadProgress(int)), this, SIGNAL(loadProgress(int))); + connect(webView->page(), SIGNAL(statusBarMessage(const QString&)), + this, SIGNAL(showStatusBarMessage(const QString&))); + connect(webView->page(), SIGNAL(linkHovered(const QString&, const QString&, const QString&)), + this, SIGNAL(linkHovered(const QString&))); + connect(webView, SIGNAL(loadProgress(int)), + this, SIGNAL(loadProgress(int))); emit setCurrentTitle(webView->title()); m_urlBars->setCurrentIndex(index); |