Skip to content
Snippets Groups Projects
Commit ece56b57 authored by Oswald Buddenhagen's avatar Oswald Buddenhagen
Browse files

connect right signal

parent e76c300f
No related merge requests found
...@@ -160,7 +160,7 @@ void OutputCollector::newConnectionAvailable() ...@@ -160,7 +160,7 @@ void OutputCollector::newConnectionAvailable()
if (m_socket) if (m_socket)
return; return;
m_socket = m_server->nextPendingConnection(); m_socket = m_server->nextPendingConnection();
connect(m_socket, SIGNAL(bytesAvailable()), SLOT(bytesAvailable())); connect(m_socket, SIGNAL(readyRead()), SLOT(bytesAvailable()));
} }
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment