diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-07-14 17:03:59 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-07-14 17:03:59 +0200 |
commit | be054acce347a227dc89308172543b64766ce0d2 (patch) | |
tree | 254c71f5d49a6246fdc48f47383958c55f210f4b /plugin/drumgizmo_plugin.h | |
parent | 4ec0bc66d7cb782db1ffcbd04194214eb6495052 (diff) |
Add 'get' prefix to metadata info methods. Update to latest plugingizmo.
Diffstat (limited to 'plugin/drumgizmo_plugin.h')
-rw-r--r-- | plugin/drumgizmo_plugin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugin/drumgizmo_plugin.h b/plugin/drumgizmo_plugin.h index 1d67e4c..be9663f 100644 --- a/plugin/drumgizmo_plugin.h +++ b/plugin/drumgizmo_plugin.h @@ -82,10 +82,10 @@ public: // Functions used to set VST plugin information std::string getId() override; - std::string effectName() override; - std::string vendorString() override; - std::string productString() override; - PluginCategory pluginCategory() override; + std::string getEffectName() override; + std::string getVendorString() override; + std::string getProductString() override; + PluginCategory getPluginCategory() override; void process(size_t pos, const std::vector<MidiEvent>& input_events, |