diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-08 11:54:07 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-08 11:54:07 +0900 |
commit | afbc1b43ec2ba8f3c1b0ace9116d913ca2aa9f74 (patch) | |
tree | 226797f5a398ab9f3a6312489ff6cf7e11293a7a /server.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 <michele.calgaro@yahoo.it>
Diffstat (limited to 'server.cpp')
-rw-r--r-- | server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -79,8 +79,8 @@ void Server::init( const TQString& addr ) { d->server = dbus_server_listen( addr.ascii(), &d->error ); d->integrator = new Integrator( d->server, this ); - connect( d->integrator, TQT_SIGNAL(newConnection(Connection*)), - TQT_SIGNAL(newConnection(Connection*)) ); + connect( d->integrator, TQ_SIGNAL(newConnection(Connection*)), + TQ_SIGNAL(newConnection(Connection*)) ); } } |