From 0d72be018e837f35729033b06c36f6832b3fb9f4 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 24 May 2021 13:09:48 +0100 Subject: [PATCH] Tweak some comments Signed-off-by: falkTX --- distrho/DistrhoPlugin.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/distrho/DistrhoPlugin.hpp b/distrho/DistrhoPlugin.hpp index f72bf06d..1331eff6 100644 --- a/distrho/DistrhoPlugin.hpp +++ b/distrho/DistrhoPlugin.hpp @@ -336,7 +336,7 @@ struct ParameterEnumerationValues { /** Array of @ParameterEnumerationValue items.@n - This pointer must be null or have been allocated on the heap with `new`. + This pointer must be null or have been allocated on the heap with `new ParameterEnumerationValue[count]`. */ const ParameterEnumerationValue* values; @@ -750,6 +750,7 @@ public: /** Check if parameter value change requests will work with the current plugin host. @note This function is only available if DISTRHO_PLUGIN_WANT_PARAMETER_VALUE_CHANGE_REQUEST is enabled. + @see requestParameterValueChange(uint32_t, float) */ bool canRequestParameterValueChanges() const noexcept;