diff options
Diffstat (limited to 'kdat/Archive.cpp')
-rw-r--r-- | kdat/Archive.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kdat/Archive.cpp b/kdat/Archive.cpp index 1a78d44..a6869ad 100644 --- a/kdat/Archive.cpp +++ b/kdat/Archive.cpp @@ -266,7 +266,7 @@ File* Archive::addFile( int size, int mtime, int startRecord, int endRecord, con TQString fn( filename ); int idx = 0; - while ( ( idx = fn.tqfind( '/' ) ) > -1 ) { + while ( ( idx = fn.find( '/' ) ) > -1 ) { path.append( fn.left( idx + 1 ) ); fn.remove( 0, idx + 1 ); } |