diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
commit | 560378aaca1784ba19806a0414a32b20c744de39 (patch) | |
tree | ce0dfd7c3febf2a1adc7603d1019a8be2083c415 /kio/kfile/kfiletreebranch.cpp | |
parent | d4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff) | |
download | tdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip |
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kio/kfile/kfiletreebranch.cpp')
-rw-r--r-- | kio/kfile/kfiletreebranch.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kio/kfile/kfiletreebranch.cpp b/kio/kfile/kfiletreebranch.cpp index 352bd875e..c0a5d1b6e 100644 --- a/kio/kfile/kfiletreebranch.cpp +++ b/kio/kfile/kfiletreebranch.cpp @@ -126,7 +126,7 @@ KFileTreeViewItem *KFileTreeBranch::parentKFTVItem( KFileItem *item ) dirUrl.setFileName( TQString::null ); // kdDebug(250) << "Directory url is " << dirUrl.prettyURL() << endl; - parent = findTVIByURL( dirUrl ); + parent = tqfindTVIByURL( dirUrl ); // kdDebug(250) << "Returning as parent item <" << parent << ">" << endl; return( parent ); } @@ -141,7 +141,7 @@ void KFileTreeBranch::slotRefreshItems( const KFileItemList& list ) while ( (currItem = it.current()) != 0 ) { - item = findTVIByURL(currItem->url()); + item = tqfindTVIByURL(currItem->url()); if (item) { item->setPixmap(0, item->fileItem()->pixmap( KIcon::SizeSmall )); item->setText( 0, item->fileItem()->text()); @@ -182,14 +182,14 @@ void KFileTreeBranch::addItems( const KFileItemList& list ) if( !m_showExtensions && !currItem->isDir() ) /* Need to cut the extension */ { TQString name = currItem->text(); - int mPoint = name.findRev( '.' ); + int mPoint = name.tqfindRev( '.' ); if( mPoint > 0 ) name = name.left( mPoint ); newKFTVI->setText( 0, name ); } } - /* Now try to find out if there are children for dirs in the treeview */ + /* Now try to tqfind out if there are children for dirs in the treeview */ /* This stats a directory on the local file system and checks the */ /* hardlink entry in the stat-buf. This works only for local directories. */ if( dirOnlyMode() && !m_recurseChildren && currItem->isLocalFile( ) && currItem->isDir() ) @@ -197,7 +197,7 @@ void KFileTreeBranch::addItems( const KFileItemList& list ) KURL url = currItem->url(); TQString filename = url.directory( false, true ) + url.fileName(); /* do the stat trick of Carsten. The problem is, that the hardlink - * count only contains directory links. Thus, this method only seem + * count only tqcontains directory links. Thus, this method only seem * to work in dir-only mode */ kdDebug(250) << "Doing stat on " << filename << endl; KDE_struct_stat statBuf; @@ -321,7 +321,7 @@ void KFileTreeBranch::slotCanceled( const KURL& url ) m_openChildrenURLs.remove( url); // stop animations etc. - KFileTreeViewItem *item = findTVIByURL(url); + KFileTreeViewItem *item = tqfindTVIByURL(url); if (!item) return; // Uh oh... emit populateFinished(item); } @@ -365,7 +365,7 @@ void KFileTreeBranch::slotRedirect( const KURL& oldUrl, const KURL&newUrl ) } } -KFileTreeViewItem* KFileTreeBranch::findTVIByURL( const KURL& url ) +KFileTreeViewItem* KFileTreeBranch::tqfindTVIByURL( const KURL& url ) { KFileTreeViewItem *resultItem = 0; @@ -400,7 +400,7 @@ KFileTreeViewItem* KFileTreeBranch::findTVIByURL( const KURL& url ) void KFileTreeBranch::slCompleted( const KURL& url ) { kdDebug(250) << "SlotCompleted hit for " << url.prettyURL() << endl; - KFileTreeViewItem *currParent = findTVIByURL( url ); + KFileTreeViewItem *currParent = tqfindTVIByURL( url ); if( ! currParent ) return; kdDebug(250) << "current parent " << currParent << " is already listed: " @@ -463,7 +463,7 @@ void KFileTreeBranch::slCompleted( const KURL& url ) if( nextChild ) /* This implies that idx > -1 */ { /* Next child is defined. We start a dirlister job on every child item - * which is a directory to find out how much children are in the child + * which is a directory to tqfind out how much children are in the child * of the last opened dir */ |