summaryrefslogtreecommitdiffstats
path: root/tools/qconfig/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qconfig/main.cpp')
-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 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());
}
}