summaryrefslogtreecommitdiffstats
path: root/libkdepim/kregexp3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkdepim/kregexp3.cpp')
-rw-r--r--libkdepim/kregexp3.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/libkdepim/kregexp3.cpp b/libkdepim/kregexp3.cpp
index ca9725ba..c4efa96f 100644
--- a/libkdepim/kregexp3.cpp
+++ b/libkdepim/kregexp3.cpp
@@ -37,7 +37,7 @@
#include <kdebug.h>
#endif
-TQString KRegExp3::tqreplace( const TQString & str,
+TQString KRegExp3::replace( const TQString & str,
const TQString & replacementStr,
int start, bool global )
{
@@ -69,16 +69,16 @@ TQString KRegExp3::tqreplace( const TQString & str,
if ( pos < 0 ) {
literalStrs << replacementStr.mid( oldpos )
- .tqreplace( bbrx, "\\" )
- .tqreplace( brx, "" );
+ .replace( bbrx, "\\" )
+ .replace( brx, "" );
#ifdef DEBUG_KREGEXP3
kdDebug() << " No more matches. Last literal is \"" + literalStrs.last() + "\"" << endl;
#endif
break;
} else {
literalStrs << replacementStr.mid( oldpos, pos-oldpos )
- .tqreplace( bbrx, "\\" )
- .tqreplace( brx, "" );
+ .replace( bbrx, "\\" )
+ .replace( brx, "" );
#ifdef DEBUG_KREGEXP3
kdDebug() << TQString(" Inserting \"") + literalStrs.last() + "\" as literal." << endl;
kdDebug() << " Searching for corresponding digit(s):" << endl;