[Web] Remove deprecated Qt < 5.9 code

This commit is contained in:
Chris Hennes
2021-03-31 13:07:06 -05:00
committed by wmayer
parent 0177f9b9f8
commit 8e6c5946cd
4 changed files with 16 additions and 47 deletions

View File

@@ -114,11 +114,7 @@ AppServer::AppServer(QObject* parent)
{
}
#if QT_VERSION >=0x050000
void AppServer::incomingConnection(qintptr socket)
#else
void AppServer::incomingConnection(int socket)
#endif
{
QTcpSocket* s = new QTcpSocket(this);
connect(s, SIGNAL(readyRead()), this, SLOT(readClient()));