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/asmformatter.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/asmformatter.cpp') diff --git a/src/asmformatter.cpp b/src/asmformatter.cpp index 2dc1c79..bb72996 100644 --- a/src/asmformatter.cpp +++ b/src/asmformatter.cpp @@ -16,7 +16,7 @@ static TQString extractComment( const TQString & line ) { - int pos = line.tqfind( ';' ); + int pos = line.find( ';' ); if ( pos == -1 ) return ""; @@ -191,9 +191,9 @@ InstructionParts::InstructionParts( TQString line ) continue; } - if ( PicAsm12bit::self()->operandList().tqcontains( (*it).upper() ) - || PicAsm14bit::self()->operandList().tqcontains( (*it).upper() ) - || PicAsm16bit::self()->operandList().tqcontains( (*it).upper() ) ) + if ( PicAsm12bit::self()->operandList().contains( (*it).upper() ) + || PicAsm14bit::self()->operandList().contains( (*it).upper() ) + || PicAsm16bit::self()->operandList().contains( (*it).upper() ) ) { m_operand = *it; foundOperand = true; -- cgit v1.2.1