bool QReadNotifier::event(QEvent *e) { if (e->type() == QEvent::SockAct) { engine->readNotification(); return true; } else if (e->type() == QEvent::SockClose) { engine->closeNotification(); return true; } return QSocketNotifier::event(e); }
bool QExceptionNotifier::event(QEvent *e) { if (e->type() == QEvent::SockAct) { if (engine->state() == QAbstractSocket::ConnectingState) engine->connectionNotification(); else engine->exceptionNotification(); return true; } return QSocketNotifier::event(e); }
bool QExceptionNotifier::event(QEvent *e) { if (e->type() == QEvent::SockAct) { engine->exceptionNotification(); return true; } return QSocketNotifier::event(e); }