diff options
Diffstat (limited to 'tools/qconfig/main.cpp')
-rw-r--r-- | tools/qconfig/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/qconfig/main.cpp b/tools/qconfig/main.cpp index f2f422c1c..a56001132 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) { |