summaryrefslogtreecommitdiffstats
path: root/kdat/VerifyDlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdat/VerifyDlg.cpp')
-rw-r--r--kdat/VerifyDlg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kdat/VerifyDlg.cpp b/kdat/VerifyDlg.cpp
index 93e8a93..520c050 100644
--- a/kdat/VerifyDlg.cpp
+++ b/kdat/VerifyDlg.cpp
@@ -248,7 +248,7 @@ void VerifyDlg::slotProcessExited( KProcess* )
void VerifyDlg::slotStdout( KProcess*, char* buf, int len )
{
TQString data;
- data.tqreplace( 0, len, buf );
+ data.replace( 0, len, buf );
/* 2002-02-23 RG */
// data[len] = '\0';
data.truncate( len );
@@ -256,7 +256,7 @@ void VerifyDlg::slotStdout( KProcess*, char* buf, int len )
_leftover += data;
int newlineIndex;
- while ( ( newlineIndex = _leftover.tqfind( '\n' ) ) > -1 ) {
+ while ( ( newlineIndex = _leftover.find( '\n' ) ) > -1 ) {
_log->append( _leftover.left( newlineIndex ) );
// Count differences.