summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/MidiNoteNode.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-08-18 19:50:53 +0000
committerDavid Robillard <d@drobilla.net>2008-08-18 19:50:53 +0000
commit625c01a594f9cc73d7b83a85d314ddb859d8d029 (patch)
treea3da6b3646c9f44b19fd6ae99bd5b7fc6f8d2baa /src/libs/engine/MidiNoteNode.cpp
parent68477f501356cc1a59dcb875012ec59199c39d70 (diff)
downloadingen-625c01a594f9cc73d7b83a85d314ddb859d8d029.tar.gz
ingen-625c01a594f9cc73d7b83a85d314ddb859d8d029.tar.bz2
ingen-625c01a594f9cc73d7b83a85d314ddb859d8d029.zip
Fix copy/paste of internal nodes.
git-svn-id: http://svn.drobilla.net/lad/ingen@1433 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/MidiNoteNode.cpp')
-rw-r--r--src/libs/engine/MidiNoteNode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/engine/MidiNoteNode.cpp b/src/libs/engine/MidiNoteNode.cpp
index e9b36fbf..0bf18f42 100644
--- a/src/libs/engine/MidiNoteNode.cpp
+++ b/src/libs/engine/MidiNoteNode.cpp
@@ -37,7 +37,7 @@ namespace Ingen {
MidiNoteNode::MidiNoteNode(const string& path, bool polyphonic, PatchImpl* parent, SampleRate srate, size_t buffer_size)
- : NodeBase(new InternalPlugin("ingen:note_node", "note", "MIDI Note"),
+ : NodeBase(new InternalPlugin(NS_INGEN "note_node", "note", "MIDI Note"),
path, polyphonic, parent, srate, buffer_size)
, _voices(new Raul::Array<Voice>(_polyphony))
, _prepared_voices(NULL)