| 880 | } |
| 881 | |
| 882 | auto 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 | |
| 888 | void LemonLime::addTasksAction() { |
| 889 | QStringList list = QDir(Settings::dataPath()).entryList(QDir::Dirs | QDir::NoDotAndDotDot); |
nothing calls this directly
no outgoing calls
no test coverage detected