| 1010 | } |
| 1011 | |
| 1012 | ModAPI::ModLoaderTypes PackProfile::getModLoaders() |
| 1013 | { |
| 1014 | ModAPI::ModLoaderTypes result = ModAPI::Unspecified; |
| 1015 | |
| 1016 | QMapIterator<QString, ModAPI::ModLoaderType> i(modloaderMapping); |
| 1017 | |
| 1018 | while (i.hasNext()) |
| 1019 | { |
| 1020 | i.next(); |
| 1021 | Component* c = getComponent(i.key()); |
| 1022 | if (c != nullptr && c->isEnabled()) { |
| 1023 | result |= i.value(); |
| 1024 | } |
| 1025 | } |
| 1026 | return result; |
| 1027 | } |
no test coverage detected