mirror of https://github.com/nymea/nymea.git
Fix mantic build
parent
a3be47b815
commit
743909b122
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue