| 1009 | } |
| 1010 | |
| 1011 | bool PluginList::isLightFlagged(const QString& name) const |
| 1012 | { |
| 1013 | auto iter = m_ESPsByName.find(name); |
| 1014 | if (iter == m_ESPsByName.end()) { |
| 1015 | return false; |
| 1016 | } else { |
| 1017 | return m_ESPs[iter->second].isLightFlagged; |
| 1018 | } |
| 1019 | } |
| 1020 | |
| 1021 | bool PluginList::hasNoRecords(const QString& name) const |
| 1022 | { |
no test coverage detected