diff options
Diffstat (limited to 'connection.cpp')
-rw-r--r-- | connection.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/connection.cpp b/connection.cpp index 295bc1d..a77da60 100644 --- a/connection.cpp +++ b/connection.cpp @@ -58,14 +58,14 @@ void Connection::Private::setConnection( DBusConnection *c ) connect( integrator, TQT_SIGNAL(readReady()), q, TQT_SLOT(dispatchRead()) ); } -Connection::Connection( TQObject *tqparent ) - : TQObject( tqparent ) +Connection::Connection( TQObject *parent ) + : TQObject( parent ) { d = new Private( this ); } -Connection::Connection( const TQString& host, TQObject *tqparent ) - : TQObject( tqparent ) +Connection::Connection( const TQString& host, TQObject *parent ) + : TQObject( parent ) { d = new Private( this ); @@ -73,8 +73,8 @@ Connection::Connection( const TQString& host, TQObject *tqparent ) init( host ); } -Connection::Connection( DBusBusType type, TQObject* tqparent ) - : TQObject( tqparent ) +Connection::Connection( DBusBusType type, TQObject* parent ) + : TQObject( parent ) { d = new Private( this ); d->setConnection( dbus_bus_get(type, &d->error) ); @@ -125,8 +125,8 @@ DBusConnection* Connection::connection() const return d->connection; } -Connection::Connection( DBusConnection *connection, TQObject *tqparent ) - : TQObject( tqparent ) +Connection::Connection( DBusConnection *connection, TQObject *parent ) + : TQObject( parent ) { d = new Private(this); d->setConnection(connection); |