diff options
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 dbb5a76..6e8528b 100644 --- a/integrator.cpp +++ b/integrator.cpp @@ -101,8 +101,8 @@ void dbusNewConnection( DBusServer *server, } ///////////////////////////////////////////////////////////// -Timeout::Timeout( TQObject *tqparent, DBusTimeout *t ) - : TQObject( tqparent ), m_timeout( t ) +Timeout::Timeout( TQObject *parent, DBusTimeout *t ) + : TQObject( parent ), m_timeout( t ) { m_timer = new TQTimer( this ); connect( m_timer, TQT_SIGNAL(timeout()), @@ -119,8 +119,8 @@ void Timeout::start() m_timer->start( dbus_timeout_get_interval( m_timeout ) ); } -Integrator::Integrator( DBusConnection *conn, TQObject *tqparent ) - : TQObject( tqparent ), m_connection( conn ) +Integrator::Integrator( DBusConnection *conn, TQObject *parent ) + : TQObject( parent ), m_connection( conn ) { m_timeouts.setAutoDelete( true ); @@ -139,8 +139,8 @@ Integrator::Integrator( DBusConnection *conn, TQObject *tqparent ) this, 0 ); } -Integrator::Integrator( DBusServer *server, TQObject *tqparent ) - : TQObject( tqparent ), m_server( server ) +Integrator::Integrator( DBusServer *server, TQObject *parent ) + : TQObject( parent ), m_server( server ) { m_connection = reinterpret_cast<DBusConnection*>( m_server ); m_timeouts.setAutoDelete( true ); |