From 6b04f4fd3a84457eed53132ac42b6b8f44b289d6 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 28 Nov 2008 23:51:25 +0000 Subject: Sane ontology for internaals. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1818 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/MidiNoteNode.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/engine/MidiNoteNode.cpp') diff --git a/src/engine/MidiNoteNode.cpp b/src/engine/MidiNoteNode.cpp index 7918e1d2..53f0a0b0 100644 --- a/src/engine/MidiNoteNode.cpp +++ b/src/engine/MidiNoteNode.cpp @@ -35,10 +35,10 @@ using namespace std; namespace Ingen { +static InternalPlugin note_plugin(NS_INTERNALS "Note", "note", "Note"); MidiNoteNode::MidiNoteNode(const string& path, bool polyphonic, PatchImpl* parent, SampleRate srate, size_t buffer_size) - : NodeBase(new InternalPlugin(NS_INGEN "note_node", "note", "Note"), - path, polyphonic, parent, srate, buffer_size) + : NodeBase(¬e_plugin, path, polyphonic, parent, srate, buffer_size) , _voices(new Raul::Array(_polyphony)) , _prepared_voices(NULL) , _sustain(false) -- cgit v1.2.1