summaryrefslogtreecommitdiffstats
path: root/kioslave/info/info.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kioslave/info/info.cc')
-rw-r--r--kioslave/info/info.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/kioslave/info/info.cc b/kioslave/info/info.cc
index ab35f282b..418600ffa 100644
--- a/kioslave/info/info.cc
+++ b/kioslave/info/info.cc
@@ -93,7 +93,7 @@ void InfoProtocol::get( const KURL& url )
decodeURL( url );
TQString path = KGlobal::iconLoader()->iconPath("up", KIcon::Toolbar, true);
- int revindex = path.findRev('/');
+ int revindex = path.tqfindRev('/');
path = path.left(revindex);
TQString cmd = KProcess::quote(m_perl);
@@ -205,7 +205,7 @@ void InfoProtocol::decodePath( TQString path )
}
//kdDebug( 7108 ) << "Path: " << path << endl;
- int slashPos = path.find( "/" );
+ int slashPos = path.tqfind( "/" );
if( slashPos < 0 )
{