diff options
author | Michele Calgaro <[email protected]> | 2024-01-08 11:54:07 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-08 11:54:07 +0900 |
commit | afbc1b43ec2ba8f3c1b0ace9116d913ca2aa9f74 (patch) | |
tree | 226797f5a398ab9f3a6312489ff6cf7e11293a7a /connection.cpp | |
parent | a980449b303fa25a057583922cb684d4aea0c01f (diff) | |
download | dbus-tqt-afbc1b43ec2ba8f3c1b0ace9116d913ca2aa9f74.tar.gz dbus-tqt-afbc1b43ec2ba8f3c1b0ace9116d913ca2aa9f74.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'connection.cpp')
-rw-r--r-- | connection.cpp | 2 |
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 ) |