summaryrefslogtreecommitdiffstats
path: root/src/kile/kileoutputwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/kileoutputwidget.cpp')
-rw-r--r--src/kile/kileoutputwidget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kile/kileoutputwidget.cpp b/src/kile/kileoutputwidget.cpp
index 55cf8e6..b556f57 100644
--- a/src/kile/kileoutputwidget.cpp
+++ b/src/kile/kileoutputwidget.cpp
@@ -33,12 +33,12 @@ namespace KileWidget
//find newline symbol
//only output if we have receive one or more
//full lines of text
- int newLineAt = str.tqfindRev('\n');
+ int newLineAt = str.findRev('\n');
if ( newLineAt != -1 )
{
line += str.left(newLineAt); //don't copy the newline char
- line.tqreplace('<',"&lt;");
- line.tqreplace('>',"&gt;");
+ line.replace('<',"&lt;");
+ line.replace('>',"&gt;");
append(line);
line = str.mid(newLineAt + 1);
}