Browse Source

Fix some code comments

Signed-off-by: falkTX <falktx@falktx.com>
pull/443/head
falkTX 1 year ago
parent
commit
26373f3c70
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      distrho/DistrhoPlugin.hpp
  2. +3
    -3
      examples/Meters/ExamplePluginMeters.cpp

+ 1
- 1
distrho/DistrhoPlugin.hpp View File

@@ -222,7 +222,7 @@ protected:


/** /**
Get the plugin unique Id.@n 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() @see d_cconst()
*/ */
virtual int64_t getUniqueId() const = 0; virtual int64_t getUniqueId() const = 0;


+ 3
- 3
examples/Meters/ExamplePluginMeters.cpp View File

@@ -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 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. This function will be called once, shortly after the plugin is created.
*/ */
void initParameter(uint32_t index, Parameter& parameter) override void initParameter(uint32_t index, Parameter& parameter) override


Loading…
Cancel
Save