From 21102b45d0d22f2761697b1b9fdfa92aafc25834 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Fri, 23 Feb 2018 08:49:14 -0600 Subject: Revert afedd2 and associated commits (method to generate initial tag file) --- libs/ardour/ardour/plugin_manager.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'libs/ardour/ardour/plugin_manager.h') diff --git a/libs/ardour/ardour/plugin_manager.h b/libs/ardour/ardour/plugin_manager.h index c450fb9594..f079e4b812 100644 --- a/libs/ardour/ardour/plugin_manager.h +++ b/libs/ardour/ardour/plugin_manager.h @@ -85,7 +85,7 @@ public: void load_tags (); void save_tags (); - void set_tags (std::string name, ARDOUR::PluginType type, std::string unique_id, std::string tags, bool factory, bool force = false); + void set_tags (ARDOUR::PluginType type, std::string unique_id, std::string tags, bool factory, bool force = false); void reset_tags (PluginInfoPtr const&); std::string get_tags_as_string (PluginInfoPtr const&) const; std::vector get_tags (PluginInfoPtr const&) const; @@ -109,14 +109,13 @@ public: private: struct PluginTag { - std::string name; ARDOUR::PluginType type; std::string unique_id; std::string tags; bool user_set; - PluginTag (std::string n, ARDOUR::PluginType t, std::string id, std::string s, bool user_set) - : name (n), type (t), unique_id (id), tags (s), user_set (user_set) {} + PluginTag (ARDOUR::PluginType t, std::string id, std::string s, bool user_set) + : type (t), unique_id (id), tags (s), user_set (user_set) {} bool operator== (PluginTag const& other) const { return other.type == type && other.unique_id == unique_id; -- cgit v1.2.3