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