diff options
Diffstat (limited to 'src/languages/gpasm.cpp')
-rw-r--r-- | src/languages/gpasm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/languages/gpasm.cpp b/src/languages/gpasm.cpp index 33cb892..4020b60 100644 --- a/src/languages/gpasm.cpp +++ b/src/languages/gpasm.cpp @@ -126,13 +126,13 @@ void Gpasm::processInput( ProcessOptions options ) bool Gpasm::isError( const TQString &message ) const { - return message.tqcontains( "Error", false ); + return message.contains( "Error", false ); } bool Gpasm::isWarning( const TQString &message ) const { - return message.tqcontains( "Warning", false ); + return message.contains( "Warning", false ); } |