summaryrefslogtreecommitdiffstats
path: root/plugins/strigi/kbfxstrigiplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/strigi/kbfxstrigiplugin.cpp')
-rw-r--r--plugins/strigi/kbfxstrigiplugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/strigi/kbfxstrigiplugin.cpp b/plugins/strigi/kbfxstrigiplugin.cpp
index 8039fa4..d97c1ae 100644
--- a/plugins/strigi/kbfxstrigiplugin.cpp
+++ b/plugins/strigi/kbfxstrigiplugin.cpp
@@ -167,11 +167,11 @@ search ( TQString _keyword )
TQString name;
std::map < std::string, std::string >::const_iterator it =
- hits.hits[i].properties.tqfind ( "title" );
+ hits.hits[i].properties.find ( "title" );
TQString filename ( hits.hits[i].uri.c_str () );
- if ( filename.tqcontains ( ".tar." ) > 0 )
+ if ( filename.contains ( ".tar." ) > 0 )
{
filename = "tar:" + filename;
kdDebug() << filename << endl;
@@ -183,7 +183,7 @@ search ( TQString _keyword )
}
else
{
- uint pos = hits.hits[i].uri.rtqfind ( '/' );
+ uint pos = hits.hits[i].uri.rfind ( '/' );
if ( pos == std::string::npos )
{
name = hits.hits[i].uri;