diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-14 00:07:26 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-14 00:07:26 +0900 |
commit | c9036df21135235ae00ee3f2813fbffffe02da4d (patch) | |
tree | 91c5242b600c8cd4bc96d768d63e82c1943b52f7 /examples/sasltest/sasltest.cpp | |
parent | fa7665909d6d103ab7c82c7210c64aa2dad8c664 (diff) | |
download | tqca-c9036df21135235ae00ee3f2813fbffffe02da4d.tar.gz tqca-c9036df21135235ae00ee3f2813fbffffe02da4d.zip |
Fixed incorrect TTQ rename (TTQ -> TQ)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/sasltest/sasltest.cpp')
-rw-r--r-- | examples/sasltest/sasltest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/sasltest/sasltest.cpp b/examples/sasltest/sasltest.cpp index dd4f858..6615988 100644 --- a/examples/sasltest/sasltest.cpp +++ b/examples/sasltest/sasltest.cpp @@ -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; |