summaryrefslogtreecommitdiff
path: root/distrho/DistrhoPlugin.hpp
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2015-04-26 19:48:26 +0200
committerfalkTX <falktx@gmail.com>2015-04-26 19:48:26 +0200
commit2a66f39cdf7b5e28d3cc61da78879fac47d4e9fc (patch)
tree5ffe9ac464623870d9e19dce6839eee27960926d /distrho/DistrhoPlugin.hpp
parentdf95e431f587450cb9fb8502142aab91a329cf44 (diff)
Misc
Diffstat (limited to 'distrho/DistrhoPlugin.hpp')
-rw-r--r--distrho/DistrhoPlugin.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/distrho/DistrhoPlugin.hpp b/distrho/DistrhoPlugin.hpp
index ad569d80..c59a694c 100644
--- a/distrho/DistrhoPlugin.hpp
+++ b/distrho/DistrhoPlugin.hpp
@@ -83,7 +83,7 @@ static const uint32_t kParameterIsLogarithmic = 0x08;
When unset, parameter is assumed to be of input type.
Parameter inputs are changed by the host and must not be changed by the plugin.@n
- The only exception being when changing programs, see Plugin::setProgram().@n
+ The only exception being when changing programs, see Plugin::loadProgram().@n
Outputs are changed by the plugin and never modified by the host.
*/
static const uint32_t kParameterIsOutput = 0x10;
@@ -453,7 +453,7 @@ struct TimePosition {
Some of this class functions are only available according to some macros.
DISTRHO_PLUGIN_WANT_PROGRAMS activates program related features.@n
- When enabled you need to implement initProgramName() and setProgram().
+ When enabled you need to implement initProgramName() and loadProgram().
DISTRHO_PLUGIN_WANT_STATE activates internal state features.@n
When enabled you need to implement initStateKey() and setState().