diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-28 19:15:42 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-28 19:15:42 +0200 |
commit | 4c3f484e1f697d93877db5425fb6ac6e6cab40a2 (patch) | |
tree | 5ad851f0a74194c8863ec63736a57a269733962e /src/mainview.cpp | |
parent | Faster Mainview load (diff) | |
download | rekonq-4c3f484e1f697d93877db5425fb6ac6e6cab40a2.tar.xz |
Removed Qt4.4 compatibility slots
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index e4958919..8f96637d 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -221,29 +221,6 @@ void MainView::clear() } -void MainView::mouseDoubleClickEvent(QMouseEvent *event) -{ - if (!childAt(event->pos()) - // Remove the line below when QTabWidget does not have a one pixel frame - && event->pos().y() < (tabBar()->y() + tabBar()->height())) - { - newWebView(true); - return; - } - KTabWidget::mouseDoubleClickEvent(event); -} - - -void MainView::contextMenuEvent(QContextMenuEvent *event) -{ - if (!childAt(event->pos())) - { - m_tabBar->contextMenuRequested(event->pos()); - return; - } - KTabWidget::contextMenuEvent(event); -} - // When index is -1 index chooses the current tab void MainView::slotReloadTab(int index) { |