1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-30 02:50:05 +00:00

Fix for audio plugin builds on win32. AudioProcessorGraph optimisations. Access to min/max values in audio thumbnails. More metadata support for wav and aiff formats.

This commit is contained in:
Julian Storer 2011-04-13 11:28:35 +01:00
parent 345c7aa23c
commit d97ce5f9ee
20 changed files with 2256 additions and 926 deletions

View file

@ -55,7 +55,7 @@ PluginWindow::PluginWindow (Component* const uiComp,
void PluginWindow::closeCurrentlyOpenWindowsFor (const uint32 nodeId)
{
for (int i = activePluginWindows.size(); --i >= 0;)
if (activePluginWindows.getUnchecked(i)->owner->id == nodeId)
if (activePluginWindows.getUnchecked(i)->owner->nodeId == nodeId)
delete activePluginWindows.getUnchecked(i);
}
@ -839,9 +839,9 @@ void GraphEditorPanel::updateComponents()
{
const AudioProcessorGraph::Node::Ptr f (graph.getNode (i));
if (getComponentForFilter (f->id) == 0)
if (getComponentForFilter (f->nodeId) == 0)
{
FilterComponent* const comp = new FilterComponent (graph, f->id);
FilterComponent* const comp = new FilterComponent (graph, f->nodeId);
addAndMakeVisible (comp);
comp->update();
}