| 134 | } |
| 135 | |
| 136 | QList<YACReaderLibrary> YACReaderLibraries::sortedLibraries() const |
| 137 | { |
| 138 | auto sortedLibraries = libraries; |
| 139 | std::sort(sortedLibraries.begin(), sortedLibraries.end(), [](const YACReaderLibrary &library1, const YACReaderLibrary &library2) { return naturalSortLessThanCI(library1.getName(), library2.getName()); }); |
| 140 | return sortedLibraries; |
| 141 | } |
| 142 | |
| 143 | QUuid YACReaderLibraries::getLibraryIdFromLegacyId(int legacyId) const |
| 144 | { |
no test coverage detected