summaryrefslogtreecommitdiffstats
path: root/src/languages/gpdasm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/languages/gpdasm.cpp')
-rw-r--r--src/languages/gpdasm.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/languages/gpdasm.cpp b/src/languages/gpdasm.cpp
index ea98221..e0a7b9e 100644
--- a/src/languages/gpdasm.cpp
+++ b/src/languages/gpdasm.cpp
@@ -77,13 +77,13 @@ bool Gpdasm::processExited( bool successfully )
bool Gpdasm::isError( const TQString &message ) const
{
- return (message.tqfind( "error", -1, false ) != -1);
+ return (message.find( "error", -1, false ) != -1);
}
bool Gpdasm::isWarning( const TQString &message ) const
{
- return (message.tqfind( "warning", -1, false ) != -1);
+ return (message.find( "warning", -1, false ) != -1);
}
@@ -92,18 +92,18 @@ MessageInfo Gpdasm::extractMessageInfo( const TQString &text )
if ( text.length()<5 || !text.startsWith("/") )
return MessageInfo();
- const int index = text.tqfind( ".asm", 0, false )+4;
+ const int index = text.find( ".asm", 0, false )+4;
if ( index == -1+4 )
return MessageInfo();
const TQString fileName = text.left(index);
// Extra line number
const TQString message = text.right(text.length()-index);
- const int linePos = message.tqfind( TQRegExp(":[\\d]+") );
+ const int linePos = message.find( TQRegExp(":[\\d]+") );
int line = -1;
if ( linePos != -1 )
{
- const int linePosEnd = message.tqfind( ':', linePos+1 );
+ const int linePosEnd = message.find( ':', linePos+1 );
if ( linePosEnd != -1 )
{
const TQString number = message.mid( linePos+1, linePosEnd-linePos-1 ).stripWhiteSpace();