diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
commit | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch) | |
tree | 3910055c634e2ca44eacd2c892118634df9b3597 /tools/qconfig | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
Diffstat (limited to 'tools/qconfig')
-rw-r--r-- | tools/qconfig/main.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/qconfig/main.cpp b/tools/qconfig/main.cpp index f906fea..fbcfb0b 100644 --- a/tools/qconfig/main.cpp +++ b/tools/qconfig/main.cpp @@ -422,7 +422,7 @@ void Main::loadFeatures(const QString& filename) sectioncontents[sec].append(feature); choices.append(feature); } else { - qDebug("Unparsed text"); + tqDebug("Unparsed text"); } feature = lab = sec = QString::null; @@ -439,7 +439,7 @@ void Main::loadFeatures(const QString& filename) int colon = line.find(':'); if ( colon < 0 ) { - qDebug("Cannot parse: %s",line.ascii()); + tqDebug("Cannot parse: %s",line.ascii()); } else { QString tag = line.left(colon); QString value = line.mid(colon+1).stripWhiteSpace(); @@ -513,7 +513,7 @@ void Main::loadFeatures(const QString& filename) deps.clear(); } else if ( token[0].isEmpty() ) { } else { - qDebug("Cannot parse: %s",token.join(" ").ascii()); + tqDebug("Cannot parse: %s",token.join(" ").ascii()); } } else if ( token[0] == "#include" ) { on = TRUE; @@ -545,7 +545,7 @@ void Main::createItem(const QString& ch) for (QStringList::Iterator dp = deps.begin(); dp != deps.end(); ++dp) { QString dsec = section[*dp]; if ( dsec.isEmpty() ) - qDebug("No section for %s",(*dp).latin1()); + tqDebug("No section for %s",(*dp).latin1()); if ( !parent && dsec == sec ) { createItem(*dp); parent = item[*dp]; @@ -582,7 +582,7 @@ void Main::loadConfig(const QString& filename) if ( i ) i->setDefined(TRUE); else - qDebug("The item %s is not used by qfeatures.h", token[1].latin1()); + tqDebug("The item %s is not used by qfeatures.h", token[1].latin1()); } } while (!s.atEnd()); } @@ -608,14 +608,14 @@ void Main::updateAvailability(QListViewItem* i) if ( dd->isDefined() || !dd->isAvailable() ) av = FALSE; } else - qDebug("%s ???",(*dit).latin1()); + tqDebug("%s ???",(*dit).latin1()); } if ( d->isAvailable() != av ) { d->setAvailable(av); updateAvailability(d); } } -qDebug("%s: %d",choice->id.latin1(),choice->isAvailable()); +tqDebug("%s: %d",choice->id.latin1(),choice->isAvailable()); } } |