From 0813b39aed2cf4c84157a22c4c9594336d93d412 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/kdesdk@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kbabel/common/regexpextractor.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'kbabel/common/regexpextractor.cpp') diff --git a/kbabel/common/regexpextractor.cpp b/kbabel/common/regexpextractor.cpp index d07c36ed..6160884c 100644 --- a/kbabel/common/regexpextractor.cpp +++ b/kbabel/common/regexpextractor.cpp @@ -140,7 +140,7 @@ TQString RegExpExtractor::plainString(bool keepPos) { s+=' '; } - tmp.tqreplace(ti->index,len,s); + tmp.replace(ti->index,len,s); } if(!keepPos) @@ -151,18 +151,18 @@ TQString RegExpExtractor::plainString(bool keepPos) return tmp; } -TQString RegExpExtractor::matchesReplaced(const TQString& tqreplace) +TQString RegExpExtractor::matchesReplaced(const TQString& replace) { TQString tmp=_string; int posCorrection=0; - int replaceLen=tqreplace.length(); + int replaceLen=replace.length(); MatchedEntryInfo *ti; for(ti=_matches.first(); ti != 0; ti=_matches.next()) { uint len=ti->extracted.length(); - tmp.tqreplace(ti->index + posCorrection,len,tqreplace); + tmp.replace(ti->index + posCorrection,len,replace); posCorrection+=(replaceLen-len); } @@ -213,7 +213,7 @@ void RegExpExtractor::processString() { s+=' '; } - tmp.tqreplace(pos,tag.length(),s); + tmp.replace(pos,tag.length(),s); break; } -- cgit v1.2.3