diff options
author | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-07-01 09:06:13 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-07-08 12:29:16 (GMT) |
commit | 16d23fdced8577e9ad015fd9283373761b8464ef (patch) | |
tree | 55ef1896a9b8ea93d919d43a5378d790283f4313 /src/network/socket/qlocalsocket.h | |
parent | e21e83b9b81801257337902102ea1b267227de4a (diff) | |
download | Qt-16d23fdced8577e9ad015fd9283373761b8464ef.zip Qt-16d23fdced8577e9ad015fd9283373761b8464ef.tar.gz Qt-16d23fdced8577e9ad015fd9283373761b8464ef.tar.bz2 |
fast Windows version of QLocalSocket
This commit removes the 100 ms polling timer from QLocalSocket
and replaces it with proper overlapped IO handling.
Reviewed-by: ossi
Diffstat (limited to 'src/network/socket/qlocalsocket.h')
-rw-r--r-- | src/network/socket/qlocalsocket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/network/socket/qlocalsocket.h b/src/network/socket/qlocalsocket.h index 417671a..4bff62e 100644 --- a/src/network/socket/qlocalsocket.h +++ b/src/network/socket/qlocalsocket.h @@ -134,6 +134,7 @@ private: Q_PRIVATE_SLOT(d_func(), void _q_notified()) Q_PRIVATE_SLOT(d_func(), void _q_canWrite()) Q_PRIVATE_SLOT(d_func(), void _q_pipeClosed()) + Q_PRIVATE_SLOT(d_func(), void _q_emitReadyRead()) #else Q_PRIVATE_SLOT(d_func(), void _q_stateChanged(QAbstractSocket::SocketState)) Q_PRIVATE_SLOT(d_func(), void _q_error(QAbstractSocket::SocketError)) |