summaryrefslogtreecommitdiffstats
path: root/kbabel/common/regexpextractor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbabel/common/regexpextractor.cpp')
-rw-r--r--kbabel/common/regexpextractor.cpp10
1 files changed, 5 insertions, 5 deletions
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;
}