summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2020-01-10 02:50:01 +0100
committerSlávek Banko <slavek.banko@axis.cz>2020-01-10 02:50:30 +0100
commit2eade3294c42f72c9b96a81764be4a584b31cabf (patch)
treec728aa2221998674839312b59f36838985ddf8ed
parentb2893375710bf15193105ccaf5b04da4c6ab7988 (diff)
downloadtqca-2eade329.tar.gz
tqca-2eade329.zip
SLOT changed to TQT_SLOT.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--src/tqca.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tqca.cpp b/src/tqca.cpp
index c609d55..3ff9a58 100644
--- a/src/tqca.cpp
+++ b/src/tqca.cpp
@@ -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;
}