diff options
author | Tim Blechmann <[email protected]> | 2025-06-30 11:21:55 +0800 |
---|---|---|
committer | Tim Blechmann <[email protected]> | 2025-07-05 01:32:36 +0000 |
commit | 817b9612bf5bf765f9efd023609c70e6386bd1f7 (patch) | |
tree | 9ceb618633cba00a0ab749d3025196615ab64c1d /src/plugins/platforms | |
parent | 83ba35ee4c04f26df5c94af13946be0fd488c792 (diff) |
mingw warngs about a missing [[fallthrough]].
Amends c2bdf7636eb46e56760f3e2f6d457c8f14627576
Pick-to: 6.9 6.10
Change-Id: I6fe960a80013e7f051e55d24fdd8db021184eaef
Reviewed-by: Thiago Macieira <[email protected]>
Reviewed-by: Morteza Jamshidi <[email protected]>
Diffstat (limited to 'src/plugins/platforms')
-rw-r--r-- | src/plugins/platforms/windows/qwindowscontext.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/platforms/windows/qwindowscontext.cpp b/src/plugins/platforms/windows/qwindowscontext.cpp index 38b3bdadd35..3fe837a2c03 100644 --- a/src/plugins/platforms/windows/qwindowscontext.cpp +++ b/src/plugins/platforms/windows/qwindowscontext.cpp @@ -1219,6 +1219,7 @@ bool QWindowsContext::windowsProc(HWND hwnd, UINT message, case QtWindows::FocusInEvent: // see QWindowsWindow::requestActivateWindow(). if (platformWindow->window()->flags() & Qt::WindowDoesNotAcceptFocus) return false; + [[fallthrough]]; case QtWindows::FocusOutEvent: handleFocusEvent(et, platformWindow); return true; |