summaryrefslogtreecommitdiffstats
path: root/integrator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'integrator.cpp')
-rw-r--r--integrator.cpp12
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();
}