diff options
Diffstat (limited to 'quanta/treeviews/uploadtreeview.cpp')
-rw-r--r-- | quanta/treeviews/uploadtreeview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quanta/treeviews/uploadtreeview.cpp b/quanta/treeviews/uploadtreeview.cpp index 3b07b112..4318a096 100644 --- a/quanta/treeviews/uploadtreeview.cpp +++ b/quanta/treeviews/uploadtreeview.cpp @@ -276,7 +276,7 @@ TQListViewItem* UploadTreeView::findItem(const TQString& path ) TQString item = path; UploadTreeFolder *it = 0; int i; - while ( ( i = item.tqfind('/') ) >= 0 ) + while ( ( i = item.find('/') ) >= 0 ) { it = findFolder( it, item.left(i) ); if ( it == 0 ) @@ -306,7 +306,7 @@ UploadTreeFile* UploadTreeView::addItem(const KURL &a_url, const KFileItem& a_fi uint col = 0; UploadTreeFolder *it = 0; KURL u; - while ( ( i = item.tqfind('/', col) ) >= 0 ) + while ( ( i = item.find('/', col) ) >= 0 ) { if ( i!=0 ) { |