diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2010-08-12 09:27:56 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2010-08-12 09:28:21 (GMT) |
commit | 58a92e8fd06b868feae06f68221d08e2dcbf1d78 (patch) | |
tree | 648f2bea19c6955384b5816aeb5f00d37d9cdd2e | |
parent | f08e07eb3f3beb2d0607272d645b23a310a67f8f (diff) | |
download | Qt-58a92e8fd06b868feae06f68221d08e2dcbf1d78.zip Qt-58a92e8fd06b868feae06f68221d08e2dcbf1d78.tar.gz Qt-58a92e8fd06b868feae06f68221d08e2dcbf1d78.tar.bz2 |
QAbstractSocket: Remove warning
-rw-r--r-- | src/network/socket/qabstractsocket.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/network/socket/qabstractsocket.cpp b/src/network/socket/qabstractsocket.cpp index ca72271..c0347dd 100644 --- a/src/network/socket/qabstractsocket.cpp +++ b/src/network/socket/qabstractsocket.cpp @@ -2100,7 +2100,6 @@ qint64 QAbstractSocket::readData(char *data, qint64 maxSize) && d->readBufferMaxSize > 0 && maxSize < d->readBufferMaxSize && d->socketEngine) { - qDebug() << "QAbstractSocket::readData filling buffer"; // Our buffer is empty and a read() was requested for a byte amount that is smaller // than the readBufferMaxSize. This means that we should fill our buffer since we want // such small reads come from the buffer and not always go to the costly socket engine read() |