| 29 | } |
| 30 | |
| 31 | QStringList KSyntaxHighlightingRepository::themeNames() |
| 32 | { |
| 33 | QStringList names; |
| 34 | for (const auto &theme : repository.themes()) |
| 35 | names.push_back(theme.name()); |
| 36 | names.sort(Qt::CaseInsensitive); |
| 37 | return names; |
| 38 | } |
| 39 | } // namespace Editor |
nothing calls this directly
no outgoing calls
no test coverage detected