Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
5.2.0 Alpha
-
None
-
Windows 8
-
46cde99c57f33136ed98e3e0d441c68b73a798dc
Description
In qtbase\src\gui\kernel\qguiapplication.cpp
There is this code:
case QWindowSystemInterfacePrivate::EnterWhatsThisMode: QGuiApplication::postEvent(QGuiApplication::instance(), new QEvent(QEvent::EnterWhatsThisMode)); default: qWarning() << "Unknown user input event type:" << e->type; break;
Obviously a "break" is missing before "default:", causing a false warning.
This happens when clicking on the ? button in a Windows caption bar.