diff options
Diffstat (limited to 'vcs/cvsservice/cvsprocesswidget.cpp')
-rw-r--r-- | vcs/cvsservice/cvsprocesswidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcs/cvsservice/cvsprocesswidget.cpp b/vcs/cvsservice/cvsprocesswidget.cpp index 550b76b5..319fcfe6 100644 --- a/vcs/cvsservice/cvsprocesswidget.cpp +++ b/vcs/cvsservice/cvsprocesswidget.cpp @@ -264,9 +264,9 @@ void CvsProcessWidget::showOutput( const TQStringList &msg ) //This will prevent TQTextEdit from crashing on trying to parse the tags. //This should fix BUG:99590 TQString lineNew(line); - lineNew.tqreplace("<", "<"); - lineNew.tqreplace(">", ">"); - lineNew.tqreplace("&", "&"); + lineNew.replace("<", "<"); + lineNew.replace(">", ">"); + lineNew.replace("&", "&"); if (line.startsWith( "C " )) append( "<cvs_conflict>" + lineNew + "</cvs_conflict>" ); |