Merge PR #661: Fix mantic build
This commit is contained in:
commit
eb8d7f07b5
@ -282,7 +282,7 @@ public:
|
|||||||
QtServiceBase::ServiceFlags serviceFlags;
|
QtServiceBase::ServiceFlags serviceFlags;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void incomingConnection(int socketDescriptor);
|
void incomingConnection(qintptr socketDescriptor) override;
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void slotReady();
|
void slotReady();
|
||||||
@ -304,7 +304,7 @@ QtServiceSysPrivate::~QtServiceSysPrivate()
|
|||||||
delete[] ident;
|
delete[] ident;
|
||||||
}
|
}
|
||||||
|
|
||||||
void QtServiceSysPrivate::incomingConnection(int socketDescriptor)
|
void QtServiceSysPrivate::incomingConnection(qintptr socketDescriptor)
|
||||||
{
|
{
|
||||||
QTcpSocket *s = new QTcpSocket(this);
|
QTcpSocket *s = new QTcpSocket(this);
|
||||||
s->setSocketDescriptor(socketDescriptor);
|
s->setSocketDescriptor(socketDescriptor);
|
||||||
|
|||||||
Reference in New Issue
Block a user