MCPcopy Create free account
hub / github.com/Project-LemonLime/Project_LemonLime / compareFileName

Method compareFileName

src/lemon.cpp:882–886  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

880}
881
882auto LemonLime::compareFileName(const std::pair<QString, QString> &a,
883 const std::pair<QString, QString> &b) -> bool {
884 return (a.first.length() < b.first.length()) ||
885 (a.first.length() == b.first.length() && QString::localeAwareCompare(a.first, b.first) < 0);
886}
887
888void LemonLime::addTasksAction() {
889 QStringList list = QDir(Settings::dataPath()).entryList(QDir::Dirs | QDir::NoDotAndDotDot);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected