diff options
Diffstat (limited to 'kioslave/iso/iso.cpp')
-rw-r--r-- | kioslave/iso/iso.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kioslave/iso/iso.cpp b/kioslave/iso/iso.cpp index 310e222c7..a772dafe5 100644 --- a/kioslave/iso/iso.cpp +++ b/kioslave/iso/iso.cpp @@ -130,7 +130,7 @@ bool kio_isoProtocol::checkNewFile( TQString fullPath, TQString & path, int star fullPath += '/'; kdDebug() << "the full path is " << fullPath << endl; - while ( (pos=fullPath.tqfind( '/', pos+1 )) != -1 ) + while ( (pos=fullPath.find( '/', pos+1 )) != -1 ) { TQString tryPath = fullPath.left( pos ); kdDebug() << fullPath << " trying " << tryPath << endl; |