call parent connect() rather than QObject::connect() in QDBusServer constructor

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
Ivailo Monev 2020-01-05 22:55:48 +00:00
parent 740908bc95
commit d0ce2f3cda

View file

@ -59,7 +59,7 @@ QDBusServer::QDBusServer(const QString &address, QObject *parent)
d = new QDBusConnectionPrivate(this);
QObject::connect(d, SIGNAL(newServerConnection(QDBusConnection)),
connect(d, SIGNAL(newServerConnection(QDBusConnection)),
this, SIGNAL(newConnection(QDBusConnection)));
QDBusErrorInternal error;