summaryrefslogtreecommitdiffstats
path: root/korn/kio_proto.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korn/kio_proto.cpp')
-rw-r--r--korn/kio_proto.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/korn/kio_proto.cpp b/korn/kio_proto.cpp
index 5177a2f3c..fc0a45ac4 100644
--- a/korn/kio_proto.cpp
+++ b/korn/kio_proto.cpp
@@ -65,11 +65,11 @@ void KIO_Protocol::readEntries( TQMap< TQString, TQString >* map ) const
if( map->tqcontains( "metadata" ) )
{
- TQStringList list = TQStringList::split( ",", *map->find( "metadata" ) );
+ TQStringList list = TQStringList::split( ",", *map->tqfind( "metadata" ) );
TQStringList::Iterator it;
for( it = list.begin(); it != list.end(); ++it )
{
- int split = (*it).find( '=' );
+ int split = (*it).tqfind( '=' );
metadata->insert( (*it).left( split ), (*it).right( (*it).length() - split - 1 ) );
}