diff --git a/src/DockAreaTabBar.cpp b/src/DockAreaTabBar.cpp index cf1cb09..d0adaac 100644 --- a/src/DockAreaTabBar.cpp +++ b/src/DockAreaTabBar.cpp @@ -157,22 +157,6 @@ CDockAreaTabBar::~CDockAreaTabBar() } -//============================================================================ -void CDockAreaTabBar::wheelEvent(QWheelEvent* Event) -{ - Event->accept(); - const int direction = Event->angleDelta().y(); - if (direction < 0) - { - horizontalScrollBar()->setValue(horizontalScrollBar()->value() + 20); - } - else - { - horizontalScrollBar()->setValue(horizontalScrollBar()->value() - 20); - } -} - - //============================================================================ void CDockAreaTabBar::setCurrentIndex(int index) { @@ -356,7 +340,7 @@ void CDockAreaTabBar::onCloseOtherTabsRequested() CDockWidget::DockWidgetDeleteOnClose) ? 1 : 0; closeTab(i); - // If the the dock widget blocks closing, i.e. if the flag + // If the dock widget blocks closing, i.e. if the flag // CustomCloseHandling is set, and the dock widget is still open, // then we do not need to correct the index if (Tab->dockWidget()->isClosed()) diff --git a/src/DockAreaTabBar.h b/src/DockAreaTabBar.h index 2d57009..e4b94f1 100644 --- a/src/DockAreaTabBar.h +++ b/src/DockAreaTabBar.h @@ -64,10 +64,6 @@ private Q_SLOTS: void onCloseOtherTabsRequested(); void onTabWidgetMoved(const QPoint& GlobalPos); -protected: - virtual void wheelEvent(QWheelEvent* Event) override; - - public: using Super = QScrollArea;