summaryrefslogtreecommitdiffstats
path: root/connection.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-08 11:54:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-10 10:00:51 +0900
commitfe52f8f3b0e2c7116b8c7b186a4466651d9bd869 (patch)
tree226797f5a398ab9f3a6312489ff6cf7e11293a7a /connection.cpp
parent317365079363481cb7ac368f783f11b9a33fc122 (diff)
downloaddbus-tqt-fe52f8f3.tar.gz
dbus-tqt-fe52f8f3.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit afbc1b43ec2ba8f3c1b0ace9116d913ca2aa9f74)
Diffstat (limited to 'connection.cpp')
-rw-r--r--connection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/connection.cpp b/connection.cpp
index 5c818f1..5b3d7d1 100644
--- a/connection.cpp
+++ b/connection.cpp
@@ -54,7 +54,7 @@ void Connection::Private::setConnection( DBusConnection *c )
}
connection = c;
integrator = new Integrator( c, q );
- connect( integrator, TQT_SIGNAL(readReady()), q, TQT_SLOT(dispatchRead()) );
+ connect( integrator, TQ_SIGNAL(readReady()), q, TQ_SLOT(dispatchRead()) );
}
Connection::Connection( TQObject *parent )