From 87a016680e3677da3993f333561e79eb0cead7d5 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 29 Jun 2011 16:05:55 +0000 Subject: TQt4 port ktechlab This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1238801 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/languages/gpdasm.cpp | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'src/languages/gpdasm.cpp') diff --git a/src/languages/gpdasm.cpp b/src/languages/gpdasm.cpp index 8c255d3..ea98221 100644 --- a/src/languages/gpdasm.cpp +++ b/src/languages/gpdasm.cpp @@ -16,11 +16,11 @@ #include #include #include -#include -#include +#include +#include -Gpdasm::Gpdasm( ProcessChain *processChain, KTechlab *parent ) - : ExternalLanguage( processChain, parent, "Gpdasm" ) +Gpdasm::Gpdasm( ProcessChain *processChain, KTechlab *tqparent ) + : ExternalLanguage( processChain, tqparent, "Gpdasm" ) { m_successfulMessage = i18n("*** Disassembly successful ***"); m_failedMessage = i18n("*** Disassembly failed ***"); @@ -53,7 +53,7 @@ void Gpdasm::processInput( ProcessOptions options ) } -void Gpdasm::outputtedMessage( const QString &message ) +void Gpdasm::outputtedMessage( const TQString &message ) { m_asmOutput += message + "\n"; } @@ -64,49 +64,49 @@ bool Gpdasm::processExited( bool successfully ) if (!successfully) return false; - QFile file(m_processOptions.intermediaryOutput()); + TQFile file(m_processOptions.intermediaryOutput()); if ( file.open(IO_WriteOnly) == false ) return false; - QTextStream stream(&file); + TQTextStream stream(&file); stream << m_asmOutput; file.close(); return true; } -bool Gpdasm::isError( const QString &message ) const +bool Gpdasm::isError( const TQString &message ) const { - return (message.find( "error", -1, false ) != -1); + return (message.tqfind( "error", -1, false ) != -1); } -bool Gpdasm::isWarning( const QString &message ) const +bool Gpdasm::isWarning( const TQString &message ) const { - return (message.find( "warning", -1, false ) != -1); + return (message.tqfind( "warning", -1, false ) != -1); } -MessageInfo Gpdasm::extractMessageInfo( const QString &text ) +MessageInfo Gpdasm::extractMessageInfo( const TQString &text ) { if ( text.length()<5 || !text.startsWith("/") ) return MessageInfo(); - const int index = text.find( ".asm", 0, false )+4; + const int index = text.tqfind( ".asm", 0, false )+4; if ( index == -1+4 ) return MessageInfo(); - const QString fileName = text.left(index); + const TQString fileName = text.left(index); // Extra line number - const QString message = text.right(text.length()-index); - const int linePos = message.find( QRegExp(":[\\d]+") ); + const TQString message = text.right(text.length()-index); + const int linePos = message.tqfind( TQRegExp(":[\\d]+") ); int line = -1; if ( linePos != -1 ) { - const int linePosEnd = message.find( ':', linePos+1 ); + const int linePosEnd = message.tqfind( ':', linePos+1 ); if ( linePosEnd != -1 ) { - const QString number = message.mid( linePos+1, linePosEnd-linePos-1 ).stripWhiteSpace(); + const TQString number = message.mid( linePos+1, linePosEnd-linePos-1 ).stripWhiteSpace(); bool ok; line = number.toInt(&ok)-1; if (!ok) line = -1; -- cgit v1.2.1