summaryrefslogtreecommitdiffstats
path: root/tools/qconfig/main.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 22:07:55 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 22:07:55 -0600
commit3ad1b623ac4af0f19db3580e4ef6b0d923260ba0 (patch)
tree3b77748c913634d88310c7933877b201532d4ae1 /tools/qconfig/main.cpp
parente02e31c8b9d854cd62cbe9799228f6e08e882773 (diff)
downloadtqt3-3ad1b623ac4af0f19db3580e4ef6b0d923260ba0.tar.gz
tqt3-3ad1b623ac4af0f19db3580e4ef6b0d923260ba0.zip
Sync again
Diffstat (limited to 'tools/qconfig/main.cpp')
-rw-r--r--tools/qconfig/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/qconfig/main.cpp b/tools/qconfig/main.cpp
index f2f422c1..a5600113 100644
--- a/tools/qconfig/main.cpp
+++ b/tools/qconfig/main.cpp
@@ -344,7 +344,7 @@ void Main::testAll()
c += section[*it];
c += "\n";
- c += "Retquires: ";
+ c += "Requires: ";
c += dependencies[*it].join(" ");
c += "\n";
@@ -445,7 +445,7 @@ void Main::loadFeatures(const TQString& filename)
TQString value = line.mid(colon+1).stripWhiteSpace();
if ( tag == "Feature" )
feature = value;
- else if ( tag == "Retquires" )
+ else if ( tag == "Requires" )
deps = TQStringList::split(TQChar(' '),value);
else if ( tag == "Name" )
lab = value;
@@ -630,7 +630,7 @@ void Main::showInfo(TQListViewItem* i)
TQString i = choice->info();
TQStringList deps = dependencies[choice->id];
if ( !deps.isEmpty() ) {
- i += "<h3>Retquires:</h3><ul>";
+ i += "<h3>Requires:</h3><ul>";
for (TQStringList::ConstIterator it = deps.begin();
it != deps.end(); ++it)
{