summaryrefslogtreecommitdiffstats
path: root/tools/qconfig
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:11:59 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:11:59 -0600
commit9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch)
treedf1e10cc7504665622d096f9ba80dc9e56f3afb8 /tools/qconfig
parenta830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff)
downloadqt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz
qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip
Undo prior accidental commit
Diffstat (limited to 'tools/qconfig')
-rw-r--r--tools/qconfig/main.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/qconfig/main.cpp b/tools/qconfig/main.cpp
index fbcfb0b..f906fea 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 {
- tqDebug("Unparsed text");
+ qDebug("Unparsed text");
}
feature = lab = sec = QString::null;
@@ -439,7 +439,7 @@ void Main::loadFeatures(const QString& filename)
int colon = line.find(':');
if ( colon < 0 ) {
- tqDebug("Cannot parse: %s",line.ascii());
+ qDebug("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 {
- tqDebug("Cannot parse: %s",token.join(" ").ascii());
+ qDebug("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() )
- tqDebug("No section for %s",(*dp).latin1());
+ qDebug("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
- tqDebug("The item %s is not used by qfeatures.h", token[1].latin1());
+ qDebug("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
- tqDebug("%s ???",(*dit).latin1());
+ qDebug("%s ???",(*dit).latin1());
}
if ( d->isAvailable() != av ) {
d->setAvailable(av);
updateAvailability(d);
}
}
-tqDebug("%s: %d",choice->id.latin1(),choice->isAvailable());
+qDebug("%s: %d",choice->id.latin1(),choice->isAvailable());
}
}