From 4656fabd8a6ff46f786cb48c220511ebe43ea300 Mon Sep 17 00:00:00 2001 From: Tim Blechmann Date: Fri, 24 May 2024 09:31:40 +0800 Subject: [PATCH] Widgets: silence clang's -Wimplicit-fallthrough clang's fallthrough detection is a little stricter than gcc. Pick-to: 6.7 Change-Id: If1052275f035a8e8a496cc5a40a21137d18712e3 Reviewed-by: Volker Hilsheimer --- src/widgets/util/qcompleter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widgets/util/qcompleter.cpp b/src/widgets/util/qcompleter.cpp index f52321a3e11..21612ad6d16 100644 --- a/src/widgets/util/qcompleter.cpp +++ b/src/widgets/util/qcompleter.cpp @@ -1308,6 +1308,7 @@ bool QCompleter::eventFilter(QObject *o, QEvent *e) case QEvent::Hide: if (d->popup) d->popup->hide(); + break; default: break; }