From e05894553004a47b1e2f276bedcf5963b57a3932 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: rename the following methods: tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/gui/logview.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/gui/logview.cpp') diff --git a/src/gui/logview.cpp b/src/gui/logview.cpp index 690b593..a158049 100644 --- a/src/gui/logview.cpp +++ b/src/gui/logview.cpp @@ -83,17 +83,17 @@ void LogView::slotParaClicked( int para, int /*pos*/ ) void LogView::tidyText( TQString &t ) { - t.tqreplace( "&", "&" ); - t.tqreplace( "<", "<" ); - t.tqreplace( ">", ">" ); + t.replace( "&", "&" ); + t.replace( "<", "<" ); + t.replace( ">", ">" ); } void LogView::untidyText( TQString &t ) { - t.tqreplace( "<", "<" ); - t.tqreplace( ">", ">" ); - t.tqreplace( "&", "&" ); + t.replace( "<", "<" ); + t.replace( ">", ">" ); + t.replace( "&", "&" ); } -- cgit v1.2.1