summaryrefslogtreecommitdiffstats
path: root/src/widgets/widgets/qtabbar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/widgets/qtabbar.cpp')
-rw-r--r--src/widgets/widgets/qtabbar.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/widgets/qtabbar.cpp b/src/widgets/widgets/qtabbar.cpp
index 858ec9c03c..68ac7c3c59 100644
--- a/src/widgets/widgets/qtabbar.cpp
+++ b/src/widgets/widgets/qtabbar.cpp
@@ -1632,7 +1632,7 @@ QSize QTabBar::tabSizeHint(int index) const
*/
void QTabBar::tabInserted(int index)
{
- Q_UNUSED(index)
+ Q_UNUSED(index);
}
/*!
@@ -1643,7 +1643,7 @@ void QTabBar::tabInserted(int index)
*/
void QTabBar::tabRemoved(int index)
{
- Q_UNUSED(index)
+ Q_UNUSED(index);
}
/*!
@@ -2364,7 +2364,7 @@ void QTabBar::wheelEvent(QWheelEvent *event)
d->setCurrentNextEnabledIndex(offset);
QWidget::wheelEvent(event);
#else
- Q_UNUSED(event)
+ Q_UNUSED(event);
#endif
}
#endif // QT_CONFIG(wheelevent)