diff options
author | Michele Calgaro <[email protected]> | 2024-01-08 11:54:46 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-10 10:07:46 +0900 |
commit | 7267a6cbc65f84a1f627a8ed245ded3d83c85062 (patch) | |
tree | bb4b03f592d77d0a391c621b58eed7e15148ac75 /src/tqca.cpp | |
parent | 9cbea02c3872c8d0a297baa1e668fa6fcde7d31c (diff) | |
download | tqca-7267a6cbc65f84a1f627a8ed245ded3d83c85062.tar.gz tqca-7267a6cbc65f84a1f627a8ed245ded3d83c85062.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 145fb03d2e5d2009d40d347e2efc577d6920aae4)
Diffstat (limited to 'src/tqca.cpp')
-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; } |