From 98f1998477d0c9eb2308ecb10c60148e6f70fba7 Mon Sep 17 00:00:00 2001 From: Noah Dayan Date: Tue, 23 Jan 2018 14:49:39 +0000 Subject: [PATCH] Fix enum documentation in juce_MPEInstrument.h --- modules/juce_audio_basics/mpe/juce_MPEInstrument.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/juce_audio_basics/mpe/juce_MPEInstrument.h b/modules/juce_audio_basics/mpe/juce_MPEInstrument.h index 62159fdd8f..02cf4a9635 100644 --- a/modules/juce_audio_basics/mpe/juce_MPEInstrument.h +++ b/modules/juce_audio_basics/mpe/juce_MPEInstrument.h @@ -105,10 +105,10 @@ public: */ enum TrackingMode { - lastNotePlayedOnChannel, //! The most recent note on the channel that is still played (key down and/or sustained) - lowestNoteOnChannel, //! The lowest note (by initialNote) on the channel with the note key still down - highestNoteOnChannel, //! The highest note (by initialNote) on the channel with the note key still down - allNotesOnChannel //! All notes on the channel (key down and/or sustained) + lastNotePlayedOnChannel, /**< The most recent note on the channel that is still played (key down and/or sustained). */ + lowestNoteOnChannel, /**< The lowest note (by initialNote) on the channel with the note key still down. */ + highestNoteOnChannel, /**< The highest note (by initialNote) on the channel with the note key still down. */ + allNotesOnChannel /**< All notes on the channel (key down and/or sustained). */ }; /** Set the MPE tracking mode for the pressure dimension. */