summaryrefslogtreecommitdiffstats
path: root/connection.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commite271940e6e10c4f5515efa13e3df47a138ea495b (patch)
treec1fc26fd86cad9d45ae387e717b23b9872149df8 /connection.cpp
parent8f9c3391a8964e83262053558132875c57b2c7d5 (diff)
downloaddbus-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 'connection.cpp')
-rw-r--r--connection.cpp16
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);