diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
commit | 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch) | |
tree | 6d4d5407c000add30aa78630e009c0e5d633e440 /tools/qconfig | |
parent | 1740cd279522c060e738bbbffacab83355d2b794 (diff) | |
download | tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip |
Automated conversion from qt3
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 dcfcfde63..b891cac0f 100644 --- a/tools/qconfig/main.cpp +++ b/tools/qconfig/main.cpp @@ -422,7 +422,7 @@ void Main::loadFeatures(const TQString& filename) sectioncontents[sec].append(feature); choices.append(feature); } else { - qDebug("Unparsed text"); + tqDebug("Unparsed text"); } feature = lab = sec = TQString::null; @@ -439,7 +439,7 @@ void Main::loadFeatures(const TQString& filename) int colon = line.find(':'); if ( colon < 0 ) { - qDebug("Cannot parse: %s",line.ascii()); + tqDebug("Cannot parse: %s",line.ascii()); } else { TQString tag = line.left(colon); TQString value = line.mid(colon+1).stripWhiteSpace(); @@ -513,7 +513,7 @@ void Main::loadFeatures(const TQString& 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 TQString& ch) for (TQStringList::Iterator dp = deps.begin(); dp != deps.end(); ++dp) { TQString 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 TQString& filename) if ( i ) i->setDefined(TRUE); else - qDebug("The item %s is not used by ntqfeatures.h", token[1].latin1()); + tqDebug("The item %s is not used by ntqfeatures.h", token[1].latin1()); } } while (!s.atEnd()); } @@ -608,14 +608,14 @@ void Main::updateAvailability(TQListViewItem* 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()); } } |