summaryrefslogtreecommitdiffstats
path: root/src/tools/list
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:22:13 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:22:13 -0600
commit9abf98be4f3111c54f13dcb44902a275bd2d7169 (patch)
treed6771816657222c79deae56c23c2d6339cba27e3 /src/tools/list
parent2b18f76290022900fe896ebac6b2b6da30a9f136 (diff)
downloadpiklab-9abf98be4f3111c54f13dcb44902a275bd2d7169.tar.gz
piklab-9abf98be4f3111c54f13dcb44902a275bd2d7169.zip
Rename additional global TQt functions
Diffstat (limited to 'src/tools/list')
-rw-r--r--src/tools/list/compile_process.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/list/compile_process.cpp b/src/tools/list/compile_process.cpp
index 7ec09d8..7ba74a2 100644
--- a/src/tools/list/compile_process.cpp
+++ b/src/tools/list/compile_process.cpp
@@ -210,7 +210,7 @@ Compile::FileData::List Compile::Process::files(bool *ok) const
PURL::FileType type = PURL::FileType::fromKey(rexp.cap(1));
if ( type==PURL::Nb_FileTypes ) {
if (ok) *ok = false;
- qWarning("Unknown PURL::FileType in file list for %s", _manager->label().latin1());
+ tqWarning("Unknown PURL::FileType in file list for %s", _manager->label().latin1());
continue;
}
if ( type.data().group==PURL::LinkerScript ) {
@@ -231,7 +231,7 @@ Compile::FileData::List Compile::Process::files(bool *ok) const
bool Compile::Process::checkIs(const TQString &s, const TQString &key)
{
if ( !s.contains(key) ) return false;
- if ( s!=key ) qWarning("Argument should be only %s, the rest will be ignored...", key.latin1());
+ if ( s!=key ) tqWarning("Argument should be only %s, the rest will be ignored...", key.latin1());
return true;
}