diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | e271940e6e10c4f5515efa13e3df47a138ea495b (patch) | |
tree | c1fc26fd86cad9d45ae387e717b23b9872149df8 /integrator.cpp | |
parent | 8f9c3391a8964e83262053558132875c57b2c7d5 (diff) | |
download | dbus-tqt-e271940e6e10c4f5515efa13e3df47a138ea495b.tar.gz dbus-tqt-e271940e6e10c4f5515efa13e3df47a138ea495b.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/dbus-tqt@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 ); |