1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Avoided a warning in the plugin host build

This commit is contained in:
jules 2016-02-17 16:52:18 +00:00
parent f5ee78595a
commit 5835bbc363

View file

@ -354,8 +354,7 @@ void FilterGraph::createNodeFromXml (const XmlElement& xml)
if (node->properties[getOpenProp (type)])
{
AudioProcessor* const processor = node->getProcessor();
jassert (processor != nullptr);
jassert (node->getProcessor() != nullptr);
if (PluginWindow* const w = PluginWindow::getWindowFor (node, type))
w->toFront (true);