iOS: remove warning from unused function in QIOSEventDispatcher

From the documentation for QAbstractEventDispatcher::flush(), this
function does only make sense for X11.

Change-Id: I7f445b67b283f60c9a30ac00837beb44e8205d8b
Reviewed-by: Morten Johan Sørvig <morten.sorvig@digia.com>
This commit is contained in:
Richard Moe Gustavsen 2012-12-12 11:16:13 +01:00 committed by Tor Arne Vestbø
parent a593de41ed
commit 54448b2f9f

View File

@ -313,7 +313,7 @@ void QIOSEventDispatcher::interrupt()
void QIOSEventDispatcher::flush()
{
qDebug() << __FUNCTION__ << "not implemented";
// X11 only.
}
QT_END_NAMESPACE