From 6d1c49c8bd45ba0a096006fb2df45ce1e4ba901b Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 4 Aug 2010 01:53:05 +0000 Subject: Additional TQt conversions git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1158881 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- dcop/dcopclient.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'dcop/dcopclient.cpp') diff --git a/dcop/dcopclient.cpp b/dcop/dcopclient.cpp index 2bbe69ed9..e446801c9 100644 --- a/dcop/dcopclient.cpp +++ b/dcop/dcopclient.cpp @@ -1329,7 +1329,7 @@ static void fillQtObjects( QCStringList& l, TQObject* o, TQCString path ) path += '/'; int unnamed = 0; - const TQObjectList *list = o ? o->children() : TQObject::objectTrees(); + const TQObjectList *list = o ? o->tqchildren() : TQObject::objectTrees(); if ( list ) { TQObjectListIt it( *list ); TQObject *obj; @@ -1343,7 +1343,7 @@ static void fillQtObjects( QCStringList& l, TQObject* o, TQCString path ) } TQCString fn = path + n; l.append( fn ); - if ( obj->children() ) + if ( obj->tqchildren() ) fillQtObjects( l, obj, fn ); } } @@ -1366,7 +1366,7 @@ static void fillQtObjectsEx( TQValueList& l, TQObject* o, TQCString path ) path += '/'; int unnamed = 0; - const TQObjectList *list = o ? o->children() : TQObject::objectTrees(); + const TQObjectList *list = o ? o->tqchildren() : TQObject::objectTrees(); if ( list ) { TQObjectListIt it( *list ); TQObject *obj; @@ -1380,7 +1380,7 @@ static void fillQtObjectsEx( TQValueList& l, TQObject* o, TQCString path ) } TQCString fn = path + n; l.append( O( fn, obj ) ); - if ( obj->children() ) + if ( obj->tqchildren() ) fillQtObjectsEx( l, obj, fn ); } } @@ -1471,7 +1471,7 @@ static bool receiveQtObject( const TQCString &objId, const TQCString &fun, const TQStrList lst = o->metaObject()->slotNames( true ); int i = 0; for ( TQPtrListIterator it( lst ); it.current(); ++it ) { - if ( o->metaObject()->slot( i++, true )->access != QMetaData::Public ) + if ( o->metaObject()->slot( i++, true )->tqaccess != QMetaData::Public ) continue; TQCString slot = it.current(); if ( slot.contains( "()" ) ) { -- cgit v1.2.1