diff options
Diffstat (limited to 'korn/kio_proto.cpp')
-rw-r--r-- | korn/kio_proto.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korn/kio_proto.cpp b/korn/kio_proto.cpp index fc0a45ac4..8434fe44b 100644 --- a/korn/kio_proto.cpp +++ b/korn/kio_proto.cpp @@ -63,13 +63,13 @@ void KIO_Protocol::readEntries( TQMap< TQString, TQString >* map ) const { TQMap< TQString, TQString> *metadata = new TQMap< TQString, TQString >; - if( map->tqcontains( "metadata" ) ) + if( map->contains( "metadata" ) ) { - TQStringList list = TQStringList::split( ",", *map->tqfind( "metadata" ) ); + TQStringList list = TQStringList::split( ",", *map->find( "metadata" ) ); TQStringList::Iterator it; for( it = list.begin(); it != list.end(); ++it ) { - int split = (*it).tqfind( '=' ); + int split = (*it).find( '=' ); metadata->insert( (*it).left( split ), (*it).right( (*it).length() - split - 1 ) ); } |