diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-11-25 02:20:50 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-11-25 02:20:50 -0600 |
commit | 56999a270de5c243399b7f237007b87559668c6f (patch) | |
tree | 47a01e67f31e21a7b0144f1ff961f0960f9ab3d9 /src/kernel/qapplication.h | |
parent | c0780a876e11732962b98e3b1aac0f503b4e9ad9 (diff) | |
download | qt3-56999a270de5c243399b7f237007b87559668c6f.tar.gz qt3-56999a270de5c243399b7f237007b87559668c6f.zip |
Wake up the correct event loop when an event is posted to TQApplication
This relates to Bug 1703
Diffstat (limited to 'src/kernel/qapplication.h')
-rw-r--r-- | src/kernel/qapplication.h | 6 |
1 files changed, 0 insertions, 6 deletions
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, |