From 8cbd3f41229fc385698bfd9a5524ba2610777543 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: rename the following methods: tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kchmviewer@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/kchmsearchengine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kchmsearchengine.cpp') diff --git a/src/kchmsearchengine.cpp b/src/kchmsearchengine.cpp index cf79e2b..a5f0a11 100644 --- a/src/kchmsearchengine.cpp +++ b/src/kchmsearchengine.cpp @@ -218,14 +218,14 @@ bool KCHMSearchEngine::searchQuery( const TQString & query, TQStringList * resul } // If new char does not stop the word, add ot and continue - if ( ch.isLetterOrNumber() || partOfWordChars.tqfind( ch ) != -1 ) + if ( ch.isLetterOrNumber() || partOfWordChars.find( ch ) != -1 ) { term.append( ch ); continue; } // If it is a split char, add this term and split char as separate term - if ( splitChars.tqfind( ch ) != -1 ) + if ( splitChars.find( ch ) != -1 ) { // Add existing term if present keeper.addTerm( term ); -- cgit v1.2.3