diff options
Diffstat (limited to 'src/libs/client/PluginModel.h')
-rw-r--r-- | src/libs/client/PluginModel.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/client/PluginModel.h b/src/libs/client/PluginModel.h index 76edc737..7af4f169 100644 --- a/src/libs/client/PluginModel.h +++ b/src/libs/client/PluginModel.h @@ -59,10 +59,10 @@ public: }*/ const char* const type_uri() const { - if (m_type == LV2) return "ingen:LV2"; - else if (m_type == LADSPA) return "ingen:LADSPA"; - else if (m_type == DSSI) return "ingen:DSSI"; - else if (m_type == Internal) return "ingen:Internal"; + if (m_type == LV2) return "ingen:LV2Plugin"; + else if (m_type == LADSPA) return "ingen:LADSPAPlugin"; + else if (m_type == DSSI) return "ingen:DSSIPlugin"; + else if (m_type == Internal) return "ingen:InternalPlugin"; else if (m_type == Patch) return "ingen:Patch"; else return ""; } |