Automated update from Qt3

pull/1/head
Timothy Pearson 11 years ago
parent 36753ac659
commit eeaba43277

@ -539,12 +539,6 @@ inline TQSize TQApplication::globalStrut()
return app_strut;
}
inline bool TQApplication::sendEvent( TQObject *receiver, TQEvent *event )
{ if ( event ) event->spont = FALSE; return tqApp ? tqApp->notify( receiver, event ) : FALSE; }
inline bool TQApplication::sendSpontaneousEvent( TQObject *receiver, TQEvent *event )
{ if ( event ) event->spont = TRUE; return tqApp ? tqApp->notify( receiver, event ) : FALSE; }
#ifdef QT_NO_TRANSLATION
// Simple versions
inline TQString TQApplication::translate( const char *, const char *sourceText,

@ -2453,6 +2453,16 @@ void TQApplication::aboutTQt()
\sa postEvent(), notify()
*/
bool TQApplication::sendEvent( TQObject *receiver, TQEvent *event ) {
if ( event ) event->spont = FALSE;
return tqApp ? tqApp->notify( receiver, event ) : FALSE;
}
bool TQApplication::sendSpontaneousEvent( TQObject *receiver, TQEvent *event ) {
if ( event ) event->spont = TRUE;
return tqApp ? tqApp->notify( receiver, event ) : FALSE;
}
/*!
Sends event \a e to \a receiver: \a {receiver}->event(\a e).
Returns the value that is returned from the receiver's event handler.
@ -3452,18 +3462,19 @@ void TQApplication::postEvent( TQObject *receiver, TQEvent *event )
globalPostedEvents->append( pe );
#ifdef QT_THREAD_SUPPORT
if ( event->type() == TQEvent::MetaCall ) {
// Wake up the receiver thread event loop
TQThread* thread = receiver->contextThreadObject();
if (thread) {
if (thread->d) {
if (thread->d->eventLoop) {
thread->d->eventLoop->wakeUp();
}
// Wake up the receiver thread event loop
TQThread* thread = receiver->contextThreadObject();
if (thread) {
if (thread->d) {
if (thread->d->eventLoop) {
thread->d->eventLoop->wakeUp();
return;
}
}
}
if ( event->type() == TQEvent::MetaCall ) {
return;
}
}
#endif
if (currentEventLoop()) {

Loading…
Cancel
Save