| 979 | } |
| 980 | |
| 981 | bool PluginList::hasLightExtension(const QString& name) const |
| 982 | { |
| 983 | auto iter = m_ESPsByName.find(name); |
| 984 | if (iter == m_ESPsByName.end()) { |
| 985 | return false; |
| 986 | } else { |
| 987 | return m_ESPs[iter->second].hasLightExtension; |
| 988 | } |
| 989 | } |
| 990 | |
| 991 | bool PluginList::isMasterFlagged(const QString& name) const |
| 992 | { |
no test coverage detected