From ef5831dd5c8811c94c9b1bc1377a90174d17c82c Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:29:52 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- src/k3bdataprojectinterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/k3bdataprojectinterface.cpp') diff --git a/src/k3bdataprojectinterface.cpp b/src/k3bdataprojectinterface.cpp index 3a115e5..ccb6c19 100644 --- a/src/k3bdataprojectinterface.cpp +++ b/src/k3bdataprojectinterface.cpp @@ -102,12 +102,12 @@ bool K3bDataProjectInterface::isFolder( const TQString& path ) const } -TQStringList K3bDataProjectInterface::tqchildren( const TQString& path ) const +TQStringList K3bDataProjectInterface::children( const TQString& path ) const { TQStringList l; K3bDataItem* item = m_dataDoc->root()->findByPath( path ); if( item && item->isDir() ) { - const TQPtrList& cl = static_cast(item)->tqchildren(); + const TQPtrList& cl = static_cast(item)->children(); for( TQPtrListIterator it( cl ); *it; ++it ) l.append( it.current()->k3bName() ); } -- cgit v1.2.3