mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-09 07:22:21 +08:00
#6037 Fix broken override in ZeroconfServer
This commit is contained in:
@@ -25,7 +25,7 @@ ZeroconfServer::ZeroconfServer(QObject* parent) :
|
||||
{
|
||||
}
|
||||
|
||||
void ZeroconfServer::incomingConnection(int socketDescriptor)
|
||||
void ZeroconfServer::incomingConnection(qintptr socketDescriptor)
|
||||
{
|
||||
ZeroconfThread* thread = new ZeroconfThread(socketDescriptor, this);
|
||||
connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
|
||||
|
||||
@@ -30,7 +30,7 @@ public:
|
||||
ZeroconfServer(QObject* parent = 0);
|
||||
|
||||
protected:
|
||||
void incomingConnection(int socketDescriptor);
|
||||
void incomingConnection(qintptr socketDescriptor) override;
|
||||
|
||||
private:
|
||||
QStringList fortunes;
|
||||
|
||||
Reference in New Issue
Block a user