From 8f73a8b671bb50977ee41b4bfb02f6aca72477fd Mon Sep 17 00:00:00 2001 From: Timur Doumler Date: Tue, 8 Mar 2016 10:26:34 +0000 Subject: [PATCH] MPE: added descriptive comment to MPEZone::getZoneByIndex. --- modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h b/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h index f4a1cf2a10..44f7f552b5 100644 --- a/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h +++ b/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h @@ -100,8 +100,9 @@ public: /** Returns the current number of MPE zones. */ int getNumZones() const noexcept; - /** Returns a pointer to the MPE zone at the given index, - or nullptr if there is no such zone. + /** Returns a pointer to the MPE zone at the given index, or nullptr if there + is no such zone. Zones are sorted by insertion order (most recently added + zone last). */ MPEZone* getZoneByIndex (int index) const noexcept;