summaryrefslogtreecommitdiffstats
path: root/tar/tar.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tar/tar.cc')
-rw-r--r--tar/tar.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tar/tar.cc b/tar/tar.cc
index d63b777..9bf043f 100644
--- a/tar/tar.cc
+++ b/tar/tar.cc
@@ -132,7 +132,7 @@ bool ArchiveProtocol::checkNewFile( const KURL & url, TQString & path ) {
fullPath += '/';
kdDebug( 7109 ) << "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( 7109 ) << fullPath << " trying " << tryPath << endl;
struct stat statbuf;