Fixed incorrect TTQ rename (TTQ -> TQ)

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c9036df211)
r14.0.x r14.0.6
Michele Calgaro 6 years ago committed by Slávek Banko
parent ea7531c73c
commit 30efa31c1b
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -308,14 +308,14 @@ public:
{
if(!ok()) {
printf("Error binding to port %d!\n", port);
TTQTimer::singleShot(0, this, SIGNAL(quit()));
TQTimer::singleShot(0, this, SIGNAL(quit()));
return;
}
char myhostname[256];
int r = gethostname(myhostname, sizeof(myhostname)-1);
if(r == -1) {
printf("Error getting hostname!\n");
TTQTimer::singleShot(0, this, SIGNAL(quit()));
TQTimer::singleShot(0, this, SIGNAL(quit()));
return;
}
host = myhostname;

@ -143,12 +143,12 @@ public:
{
if(cert.isNull() || privkey.isNull()) {
printf("Error loading cert and/or private key!\n");
TTQTimer::singleShot(0, this, SIGNAL(quit()));
TQTimer::singleShot(0, this, SIGNAL(quit()));
return;
}
if(!ok()) {
printf("Error binding to port %d!\n", port);
TTQTimer::singleShot(0, this, SIGNAL(quit()));
TQTimer::singleShot(0, this, SIGNAL(quit()));
return;
}
printf("Listening on port %d ...\n", port);

Loading…
Cancel
Save