Automated update from Qt3

pull/1/head
Timothy Pearson 11 years ago
parent cff522f986
commit 2d10fcbf89

@ -2931,7 +2931,14 @@ int TQApplication::exec()
*/
void TQApplication::exit( int retcode )
{
tqApp->eventLoop()->exit( retcode );
TQThread* thread = tqApp->guiThread();
if (thread) {
if (thread->d) {
if (thread->d->eventLoop) {
thread->d->eventLoop->exit( retcode );
}
}
}
}
/*!

Loading…
Cancel
Save