From e271940e6e10c4f5515efa13e3df47a138ea495b Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 22:19:39 +0000 Subject: 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 --- connection.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'connection.cpp') 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); -- cgit v1.2.1