diff --git a/distrho/DistrhoPlugin.hpp b/distrho/DistrhoPlugin.hpp index 546212a3..1a51db24 100644 --- 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 index 5f5a66dc..daa53835 100644 --- 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