diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-08 11:54:46 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-08 11:54:46 +0900 |
commit | 145fb03d2e5d2009d40d347e2efc577d6920aae4 (patch) | |
tree | bb4b03f592d77d0a391c621b58eed7e15148ac75 /src | |
parent | 4a9cdf1df0a990c82989ea75b1f65d31444b0c8d (diff) | |
download | tqca-145fb03d2e5d2009d40d347e2efc577d6920aae4.tar.gz tqca-145fb03d2e5d2009d40d347e2efc577d6920aae4.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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; } |