DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 26373f3c701543a4014569de3c630427cc9baf46
parent 43aeb8bc4ea3fa3f0b5c80cd76aa0144bbedf838
Author: falkTX <falktx@falktx.com>
Date:   Wed, 11 Oct 2023 14:39:53 +0200

Fix some code comments

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
Mdistrho/DistrhoPlugin.hpp | 2+-
Mexamples/Meters/ExamplePluginMeters.cpp | 6+++---
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/distrho/DistrhoPlugin.hpp b/distrho/DistrhoPlugin.hpp @@ -222,7 +222,7 @@ protected: /** Get the plugin unique Id.@n - This value is used by LADSPA, DSSI and VST plugin formats. + This value is used by LADSPA, DSSI, VST2 and VST3 plugin formats. @see d_cconst() */ virtual int64_t getUniqueId() const = 0; diff --git a/examples/Meters/ExamplePluginMeters.cpp b/examples/Meters/ExamplePluginMeters.cpp @@ -90,8 +90,8 @@ protected: } /** - Get the plugin unique Id. - This value is used by LADSPA, DSSI and VST plugin formats. + Get the plugin unique Id.@n + This value is used by LADSPA, DSSI, VST2 and VST3 plugin formats. */ int64_t getUniqueId() const override { @@ -115,7 +115,7 @@ protected: } /** - Initialize the parameter @a index. + Initialize the parameter @a index.@n This function will be called once, shortly after the plugin is created. */ void initParameter(uint32_t index, Parameter& parameter) override