summaryrefslogtreecommitdiffstats
path: root/kmail/tests/mimelibtests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/tests/mimelibtests.cpp')
-rw-r--r--kmail/tests/mimelibtests.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/tests/mimelibtests.cpp b/kmail/tests/mimelibtests.cpp
index 34a4f4692..b152fdcf6 100644
--- a/kmail/tests/mimelibtests.cpp
+++ b/kmail/tests/mimelibtests.cpp
@@ -39,8 +39,8 @@ KUNITTEST_MODULE_REGISTER_TESTER( MimeLibTester );
static TQString makePrintable( const TQCString& str )
{
TQString a = str;
- a = a.tqreplace( '\r', "\\r" );
- a = a.tqreplace( '\n', "\\n" );
+ a = a.replace( '\r', "\\r" );
+ a = a.replace( '\n', "\\n" );
return a;
}
#endif
@@ -48,8 +48,8 @@ static TQString makePrintable( const TQCString& str )
static TQString makePrintable( const DwString& str )
{
TQString a = KMail::Util::CString( str ); // ## we assume latin1
- a = a.tqreplace( '\r', "\\r" );
- a = a.tqreplace( '\n', "\\n" );
+ a = a.replace( '\r', "\\r" );
+ a = a.replace( '\n', "\\n" );
return a;
}