SLOT changed to TQT_SLOT.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
remotes/origin/feat/add_tls_plugin
Slávek Banko 4 years ago
parent b289337571
commit 2eade3294c
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -902,7 +902,7 @@ bool TLS::startClient(const TQString &host)
if(!d->c->startClient(d->store, *d->ourCert.d->c, *d->ourKey.d->c))
return false;
TQTimer::singleShot(0, this, SLOT(update()));
TQTimer::singleShot(0, this, TQT_SLOT(update()));
return true;
}
@ -912,7 +912,7 @@ bool TLS::startServer()
if(!d->c->startServer(d->store, *d->ourCert.d->c, *d->ourKey.d->c))
return false;
TQTimer::singleShot(0, this, SLOT(update()));
TQTimer::singleShot(0, this, TQT_SLOT(update()));
return true;
}
@ -922,7 +922,7 @@ void TLS::close()
return;
d->closing = true;
TQTimer::singleShot(0, this, SLOT(update()));
TQTimer::singleShot(0, this, TQT_SLOT(update()));
}
bool TLS::isHandshaken() const
@ -1265,7 +1265,7 @@ bool SASL::startClient(const TQString &service, const TQString &host, const TQSt
d->first = true;
d->server = false;
d->tried = false;
TQTimer::singleShot(0, this, SLOT(tryAgain()));
TQTimer::singleShot(0, this, TQT_SLOT(tryAgain()));
return true;
}

Loading…
Cancel
Save