add a missing break in QGuiApplicationPrivate::processWindowSystemEvent

Task-number: QTBUG-34016
Change-Id: Ifbb4a63845328e32fb0ad679415dca0f90dde624
Reviewed-by: Andy Shaw <andy.shaw@digia.com>
This commit is contained in:
Liang Qi 2013-10-11 10:39:15 +02:00 committed by The Qt Project
parent 9e7fa9f72b
commit 46cde99c57

View File

@ -1489,6 +1489,7 @@ void QGuiApplicationPrivate::processWindowSystemEvent(QWindowSystemInterfacePriv
#endif
case QWindowSystemInterfacePrivate::EnterWhatsThisMode:
QGuiApplication::postEvent(QGuiApplication::instance(), new QEvent(QEvent::EnterWhatsThisMode));
break;
default:
qWarning() << "Unknown user input event type:" << e->type;
break;