summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2018-09-30 01:24:50 +0200
committerfalkTX <falktx@gmail.com>2018-09-30 01:24:50 +0200
commita7f781a4c5ae6585a89982eea7bc2f5e30298ef3 (patch)
tree5c559cea7be4ea37628d1fff9a7af7a97482a805
parent72279b8e7c8d1a80132e42bcbc9761c3c8911190 (diff)
parent87df8f00671e1f5bc717f9b2be26ba76f190ae72 (diff)
Merge branch 'master' into pugl-update
-rw-r--r--examples/Info/InfoExamplePlugin.cpp4
-rw-r--r--examples/Latency/LatencyExamplePlugin.cpp2
-rw-r--r--examples/Meters/ExamplePluginMeters.cpp2
-rw-r--r--examples/MidiThrough/MidiThroughExamplePlugin.cpp6
-rw-r--r--examples/Parameters/ExamplePluginParameters.cpp2
-rw-r--r--examples/States/ExamplePluginStates.cpp4
-rw-r--r--examples/States/ExampleUIStates.cpp2
7 files changed, 11 insertions, 11 deletions
diff --git a/examples/Info/InfoExamplePlugin.cpp b/examples/Info/InfoExamplePlugin.cpp
index 1ffa74ac..9330b382 100644
--- a/examples/Info/InfoExamplePlugin.cpp
+++ b/examples/Info/InfoExamplePlugin.cpp
@@ -70,7 +70,7 @@ protected:
*/
const char* getHomePage() const override
{
- return "https://github.com/DISTRHO/plugin-examples";
+ return "https://github.com/DISTRHO/DPF";
}
/**
@@ -193,7 +193,7 @@ protected:
*/
void setParameterValue(uint32_t, float) override
{
- // this is only called for input paramters, which we have none of.
+ // this is only called for input parameters, which we have none of.
}
/* --------------------------------------------------------------------------------------------------------
diff --git a/examples/Latency/LatencyExamplePlugin.cpp b/examples/Latency/LatencyExamplePlugin.cpp
index 5dce73f5..bab5df5b 100644
--- a/examples/Latency/LatencyExamplePlugin.cpp
+++ b/examples/Latency/LatencyExamplePlugin.cpp
@@ -76,7 +76,7 @@ protected:
*/
const char* getHomePage() const override
{
- return "https://github.com/DISTRHO/plugin-examples";
+ return "https://github.com/DISTRHO/DPF";
}
/**
diff --git a/examples/Meters/ExamplePluginMeters.cpp b/examples/Meters/ExamplePluginMeters.cpp
index 40f79516..47ddd3c0 100644
--- a/examples/Meters/ExamplePluginMeters.cpp
+++ b/examples/Meters/ExamplePluginMeters.cpp
@@ -69,7 +69,7 @@ protected:
*/
const char* getHomePage() const override
{
- return "https://github.com/DISTRHO/plugin-examples";
+ return "https://github.com/DISTRHO/DPF";
}
/**
diff --git a/examples/MidiThrough/MidiThroughExamplePlugin.cpp b/examples/MidiThrough/MidiThroughExamplePlugin.cpp
index 7f7d372f..d5d9e102 100644
--- a/examples/MidiThrough/MidiThroughExamplePlugin.cpp
+++ b/examples/MidiThrough/MidiThroughExamplePlugin.cpp
@@ -21,7 +21,7 @@ START_NAMESPACE_DISTRHO
// -----------------------------------------------------------------------------------------------------------
/**
- Plugin that demonstrates the latency API in DPF.
+ Plugin that demonstrates MIDI output in DPF.
*/
class MidiThroughExamplePlugin : public Plugin
{
@@ -47,7 +47,7 @@ protected:
*/
const char* getDescription() const override
{
- return "Plugin that demonstrates the latency API in DPF.";
+ return "Plugin that demonstrates MIDI output in DPF.";
}
/**
@@ -63,7 +63,7 @@ protected:
*/
const char* getHomePage() const override
{
- return "https://github.com/DISTRHO/plugin-examples";
+ return "https://github.com/DISTRHO/DPF";
}
/**
diff --git a/examples/Parameters/ExamplePluginParameters.cpp b/examples/Parameters/ExamplePluginParameters.cpp
index c740cc7e..ea6ec6d1 100644
--- a/examples/Parameters/ExamplePluginParameters.cpp
+++ b/examples/Parameters/ExamplePluginParameters.cpp
@@ -72,7 +72,7 @@ The plugin will be treated as an effect, but it will not change the host audio."
*/
const char* getHomePage() const override
{
- return "https://github.com/DISTRHO/plugin-examples";
+ return "https://github.com/DISTRHO/DPF";
}
/**
diff --git a/examples/States/ExamplePluginStates.cpp b/examples/States/ExamplePluginStates.cpp
index 3e5a0196..b9f9ee57 100644
--- a/examples/States/ExamplePluginStates.cpp
+++ b/examples/States/ExamplePluginStates.cpp
@@ -72,7 +72,7 @@ The plugin will be treated as an effect, but it will not change the host audio."
*/
const char* getHomePage() const override
{
- return "https://github.com/DISTRHO/plugin-examples";
+ return "https://github.com/DISTRHO/DPF";
}
/**
@@ -277,7 +277,7 @@ The plugin will be treated as an effect, but it will not change the host audio."
void run(const float** inputs, float** outputs, uint32_t frames) override
{
/**
- This plugin does nothing, it just demonstrates parameter usage.
+ This plugin does nothing, it just demonstrates state usage.
So here we directly copy inputs over outputs, leaving the audio untouched.
We need to be careful in case the host re-uses the same buffer for both ins and outs.
*/
diff --git a/examples/States/ExampleUIStates.cpp b/examples/States/ExampleUIStates.cpp
index d7da8dea..85546225 100644
--- a/examples/States/ExampleUIStates.cpp
+++ b/examples/States/ExampleUIStates.cpp
@@ -192,7 +192,7 @@ protected:
/**
Mouse press event.
- This UI will de/activate blocks when you click them and reports it as a state change to the plugin.
+ This UI will de/activate blocks when you click them and report it as a state change to the plugin.
*/
bool onMouse(const MouseEvent& ev) override
{