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:
parent
f5ee78595a
commit
5835bbc363
1 changed files with 1 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue