Widgets: silence clang's -Wimplicit-fallthrough

clang's fallthrough detection is a little stricter than gcc.

Change-Id: If1052275f035a8e8a496cc5a40a21137d18712e3
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
(cherry picked from commit 4656fabd8a6ff46f786cb48c220511ebe43ea300)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Tim Blechmann 2024-05-24 09:31:40 +08:00 committed by Qt Cherry-pick Bot
parent 76752235a0
commit eb4e5b798d

View File

@ -1308,6 +1308,7 @@ bool QCompleter::eventFilter(QObject *o, QEvent *e)
case QEvent::Hide:
if (d->popup)
d->popup->hide();
break;
default:
break;
}