summaryrefslogtreecommitdiffstats
path: root/src/server/PatchPlugin.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/PatchPlugin.hpp')
-rw-r--r--src/server/PatchPlugin.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/server/PatchPlugin.hpp b/src/server/PatchPlugin.hpp
index 860ddd78..fc5d808f 100644
--- a/src/server/PatchPlugin.hpp
+++ b/src/server/PatchPlugin.hpp
@@ -39,17 +39,17 @@ public:
: PluginImpl(uris, Plugin::Patch, uri)
{}
- NodeImpl* instantiate(BufferFactory& bufs,
- const std::string& name,
- bool polyphonic,
- PatchImpl* parent,
- Engine& engine)
+ NodeImpl* instantiate(BufferFactory& bufs,
+ const Raul::Symbol& symbol,
+ bool polyphonic,
+ PatchImpl* parent,
+ Engine& engine)
{
return NULL;
}
- const std::string symbol() const { return "patch"; }
- const std::string name() const { return "Ingen Patch"; }
+ const Raul::Symbol symbol() const { return Raul::Symbol("patch"); }
+ const std::string name() const { return "Ingen Patch"; }
private:
const std::string _symbol;