diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-30 00:15:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-30 00:15:53 +0000 |
commit | 0aaa8e3fc8f8a1481333b564f0922277c8d8ad59 (patch) | |
tree | b95c0ca86c4876dd139af376b9f4afd8917cf0cd /src/tools/jal/jal_compile.cpp | |
parent | b79a2c28534cf09987eeeba3077fff9236df182a (diff) | |
download | piklab-0aaa8e3fc8f8a1481333b564f0922277c8d8ad59.tar.gz piklab-0aaa8e3fc8f8a1481333b564f0922277c8d8ad59.zip |
TQt4 port piklab
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/piklab@1238822 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/tools/jal/jal_compile.cpp')
-rw-r--r-- | src/tools/jal/jal_compile.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/jal/jal_compile.cpp b/src/tools/jal/jal_compile.cpp index 4d62e68..aa7d42f 100644 --- a/src/tools/jal/jal_compile.cpp +++ b/src/tools/jal/jal_compile.cpp @@ -8,19 +8,19 @@ ***************************************************************************/ #include "jal_compile.h" -void JAL::CompileFile::logStderrLine(const QString &line) +void JAL::CompileFile::logStderrLine(const TQString &line) { - if ( line.contains('\r') ) return; // what are those lines ? + if ( line.tqcontains('\r') ) return; // what are those lines ? // #### TODO - doLog(Log::LineType::Normal, line, QString::null, 0); // unrecognized + doLog(Log::LineType::Normal, line, TQString(), 0); // unrecognized } -QStringList JAL::CompileFile::genericArguments(const Compile::Config &) const +TQStringList JAL::CompileFile::genericArguments(const Compile::Config &) const { return "%I"; } -QString JAL::CompileFile::outputFiles() const +TQString JAL::CompileFile::outputFiles() const { return "PURL::AsmGPAsm PURL::Hex"; } |