From bf02c6e182f69d34b9a3fb6d705fd3e229f6c2bd Mon Sep 17 00:00:00 2001 From: jules Date: Fri, 24 Feb 2017 08:24:32 +0000 Subject: [PATCH] Minor documentation fix --- .../processors/juce_AudioProcessorGraph.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/juce_audio_processors/processors/juce_AudioProcessorGraph.h b/modules/juce_audio_processors/processors/juce_AudioProcessorGraph.h index 6016789d80..1bafb7ac25 100644 --- a/modules/juce_audio_processors/processors/juce_AudioProcessorGraph.h +++ b/modules/juce_audio_processors/processors/juce_AudioProcessorGraph.h @@ -177,15 +177,13 @@ public: Node* addNode (AudioProcessor* newProcessor, uint32 nodeId = 0); /** Deletes a node within the graph which has the specified ID. - This will also delete any connections that are attached to this node. */ bool removeNode (uint32 nodeId); - /** Deletes a node within the graph which has the specified ID. - + /** Deletes a node within the graph. This will also delete any connections that are attached to this node. - */ + */ bool removeNode (Node* node); //==============================================================================