From 5e6d421dac80359477a926456a56a7772bfc0945 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 4 Jun 2009 00:47:48 +0000 Subject: Don't treat non-plugin metadata as plugin data. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2092 a436a847-0d15-0410-975c-d299462d15a1 --- src/common/interface/Plugin.hpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/common/interface') 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; } }; -- cgit v1.2.1