MCPcopy Create free account
hub / github.com/apohl79/audiogridder / removeMissingPlugins

Method removeMissingPlugins

Server/Source/PluginListComponent.cpp:234–244  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232}
233
234void PluginListComponent::removeMissingPlugins() {
235 auto types = m_list.getTypes();
236
237 for (int i = types.size(); --i >= 0;) {
238 auto type = types.getUnchecked(i);
239
240 if (!m_formatManager.doesPluginStillExist(type)) {
241 m_list.removeType(type);
242 }
243 }
244}
245
246void PluginListComponent::removePluginItems(const std::vector<int> indexes) {
247 auto types = m_list.getTypes();

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected