diff options
Diffstat (limited to 'src/common/interface/Plugin.hpp')
-rw-r--r-- | src/common/interface/Plugin.hpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/common/interface/Plugin.hpp b/src/common/interface/Plugin.hpp index 9b908fb8..12d8b4d0 100644 --- a/src/common/interface/Plugin.hpp +++ b/src/common/interface/Plugin.hpp @@ -29,7 +29,7 @@ namespace Shared { class Plugin : virtual public Resource { public: - enum Type { LV2, LADSPA, Internal, Patch }; + enum Type { NIL, LV2, LADSPA, Internal, Patch }; virtual Type type() const = 0; @@ -52,9 +52,7 @@ public: return Internal; else if (uri == "ingen:Patch") return Patch; - else - std::cerr << "WARNING: Unknown plugin type " << uri << std::endl; - return Internal; + return NIL; } }; |