diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tqca.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tqca.cpp b/src/tqca.cpp index 8eb7bb5..cc5dad7 100644 --- a/src/tqca.cpp +++ b/src/tqca.cpp @@ -907,7 +907,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, TQT_SLOT(update())); + TQTimer::singleShot(0, this, TQ_SLOT(update())); return true; } @@ -917,7 +917,7 @@ bool TLS::startServer() if(!d->c->startServer(d->store, *d->ourCert.d->c, *d->ourKey.d->c)) return false; - TQTimer::singleShot(0, this, TQT_SLOT(update())); + TQTimer::singleShot(0, this, TQ_SLOT(update())); return true; } @@ -927,7 +927,7 @@ void TLS::close() return; d->closing = true; - TQTimer::singleShot(0, this, TQT_SLOT(update())); + TQTimer::singleShot(0, this, TQ_SLOT(update())); } bool TLS::isHandshaken() const @@ -1270,7 +1270,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, TQT_SLOT(tryAgain())); + TQTimer::singleShot(0, this, TQ_SLOT(tryAgain())); return true; } |