| 19 | #include <QDebug> |
| 20 | |
| 21 | LegacyModList::LegacyModList(const QString &dir, const QString &list_file) |
| 22 | : m_dir(dir), m_list_file(list_file) |
| 23 | { |
| 24 | FS::ensureFolderPathExists(m_dir.absolutePath()); |
| 25 | m_dir.setFilter(QDir::Readable | QDir::NoDotAndDotDot | QDir::Files | QDir::Dirs); |
| 26 | m_dir.setSorting(QDir::Name | QDir::IgnoreCase | QDir::LocaleAware); |
| 27 | } |
| 28 | |
| 29 | struct OrderItem |
| 30 | { |
nothing calls this directly
no test coverage detected