diff options
author | Michele Calgaro <[email protected]> | 2024-01-08 11:54:07 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-10 10:00:51 +0900 |
commit | fe52f8f3b0e2c7116b8c7b186a4466651d9bd869 (patch) | |
tree | 226797f5a398ab9f3a6312489ff6cf7e11293a7a /integrator.cpp | |
parent | 317365079363481cb7ac368f783f11b9a33fc122 (diff) | |
download | dbus-tqt-fe52f8f3b0e2c7116b8c7b186a4466651d9bd869.tar.gz dbus-tqt-fe52f8f3b0e2c7116b8c7b186a4466651d9bd869.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit afbc1b43ec2ba8f3c1b0ace9116d913ca2aa9f74)
Diffstat (limited to 'integrator.cpp')
-rw-r--r-- | integrator.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/integrator.cpp b/integrator.cpp index e49cf7e..085f2a0 100644 --- a/integrator.cpp +++ b/integrator.cpp @@ -104,8 +104,8 @@ Timeout::Timeout( TQObject *parent, DBusTimeout *t ) : TQObject( parent ), m_timeout( t ) { m_timer = new TQTimer( this ); - connect( m_timer, TQT_SIGNAL(timeout()), - TQT_SLOT(slotTimeout()) ); + connect( m_timer, TQ_SIGNAL(timeout()), + TQ_SLOT(slotTimeout()) ); } void Timeout::slotTimeout() @@ -193,12 +193,12 @@ void Integrator::addWatch( DBusWatch *watch ) if ( flags & DBUS_WATCH_READABLE ) { qtwatch->readSocket = new TQSocketNotifier( fd, TQSocketNotifier::Read, this ); - TQObject::connect( qtwatch->readSocket, TQT_SIGNAL(activated(int)), TQT_SLOT(slotRead(int)) ); + TQObject::connect( qtwatch->readSocket, TQ_SIGNAL(activated(int)), TQ_SLOT(slotRead(int)) ); } if (flags & DBUS_WATCH_WRITABLE) { qtwatch->writeSocket = new TQSocketNotifier( fd, TQSocketNotifier::Write, this ); - TQObject::connect( qtwatch->writeSocket, TQT_SIGNAL(activated(int)), TQT_SLOT(slotWrite(int)) ); + TQObject::connect( qtwatch->writeSocket, TQ_SIGNAL(activated(int)), TQ_SLOT(slotWrite(int)) ); } m_watches.insert( fd, qtwatch ); @@ -221,8 +221,8 @@ void Integrator::addTimeout( DBusTimeout *timeout ) { Timeout *mt = new Timeout( this, timeout ); m_timeouts.insert( timeout, mt ); - connect( mt, TQT_SIGNAL(timeout(DBusTimeout*)), - TQT_SLOT(slotTimeout(DBusTimeout*)) ); + connect( mt, TQ_SIGNAL(timeout(DBusTimeout*)), + TQ_SLOT(slotTimeout(DBusTimeout*)) ); mt->start(); } |