The output of "tdecmshell --list" is now sorted by ascending module name.

This resolves bug 1893.
pull/16/head
Michele Calgaro 11 years ago
parent 5960db66c9
commit ee90275a69

@ -238,15 +238,18 @@ extern "C" KDE_EXPORT int kdemain(int _argc, char *_argv[])
maxLen = len; maxLen = len;
} }
TQStringList module_list;
for (KService::List::ConstIterator it = m_modules.begin(); it != m_modules.end(); ++it) for (KService::List::ConstIterator it = m_modules.begin(); it != m_modules.end(); ++it)
{ {
TQString entry("%1 - %2"); module_list.append(TQString("%1 - %2")
.arg((*it)->desktopEntryName().leftJustify(maxLen, ' '))
entry = entry.arg((*it)->desktopEntryName().leftJustify(maxLen, ' ')) .arg(!(*it)->comment().isEmpty() ? (*it)->comment() : i18n("No description available")));
.arg(!(*it)->comment().isEmpty() ? (*it)->comment() }
: i18n("No description available")); module_list.sort();
cout << static_cast<const char *>(entry.local8Bit()) << endl; for (TQStringList::Iterator it=module_list.begin(); it!=module_list.end(); ++it)
{
cout << static_cast<const char *>((*it).local8Bit()) << endl;
} }
return 0; return 0;
} }

Loading…
Cancel
Save