summaryrefslogtreecommitdiffstats
path: root/examples/agent
diff options
context:
space:
mode:
Diffstat (limited to 'examples/agent')
-rw-r--r--examples/agent/tqtlistener.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/agent/tqtlistener.cpp b/examples/agent/tqtlistener.cpp
index 2532dd689..90a327faf 100644
--- a/examples/agent/tqtlistener.cpp
+++ b/examples/agent/tqtlistener.cpp
@@ -52,13 +52,13 @@ void TQtListener::initiateAuthentication(const TQString &actionId, const TQStrin
{
tqDebug(identity.toString());
Session *session = new Session(identity, cookie, result);
- connect(session, TQT_SIGNAL(request(const TQString&, bool)), this,
- TQT_SLOT(request(const TQString&, bool)));
- connect(session, TQT_SIGNAL(completed(bool)), this, TQT_SLOT(completed(bool)));
- connect(session, TQT_SIGNAL(showError(const TQString&)), this,
- TQT_SLOT(showError(const TQString&)));
- connect(session, TQT_SIGNAL(showInfo(const TQString&)), this,
- TQT_SLOT(showInfo(const TQString&)));
+ connect(session, TQ_SIGNAL(request(const TQString&, bool)), this,
+ TQ_SLOT(request(const TQString&, bool)));
+ connect(session, TQ_SIGNAL(completed(bool)), this, TQ_SLOT(completed(bool)));
+ connect(session, TQ_SIGNAL(showError(const TQString&)), this,
+ TQ_SLOT(showError(const TQString&)));
+ connect(session, TQ_SIGNAL(showInfo(const TQString&)), this,
+ TQ_SLOT(showInfo(const TQString&)));
session->initiate();
}
}