From 56999a270de5c243399b7f237007b87559668c6f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 25 Nov 2013 02:20:50 -0600 Subject: Wake up the correct event loop when an event is posted to TQApplication This relates to Bug 1703 --- src/kernel/qapplication.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/kernel/qapplication.h') diff --git a/src/kernel/qapplication.h b/src/kernel/qapplication.h index de65e39..dca2138 100644 --- a/src/kernel/qapplication.h +++ b/src/kernel/qapplication.h @@ -539,12 +539,6 @@ inline QSize QApplication::globalStrut() return app_strut; } -inline bool QApplication::sendEvent( QObject *receiver, QEvent *event ) -{ if ( event ) event->spont = FALSE; return qApp ? qApp->notify( receiver, event ) : FALSE; } - -inline bool QApplication::sendSpontaneousEvent( QObject *receiver, QEvent *event ) -{ if ( event ) event->spont = TRUE; return qApp ? qApp->notify( receiver, event ) : FALSE; } - #ifdef QT_NO_TRANSLATION // Simple versions inline QString QApplication::translate( const char *, const char *sourceText, -- cgit v1.2.1