diff options
author | David Robillard <d@drobilla.net> | 2006-07-19 08:59:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-07-19 08:59:30 +0000 |
commit | 466f306c1154b7aeccff301b8597872b82e3c806 (patch) | |
tree | 1b8d9d6c4a778f0f5cf36522295a66d3493e1adc /src/libs/engine/Patch.cpp | |
parent | 2dbd0cd81dff72aea42344188d20f7d7f6d20e1a (diff) | |
download | ingen-466f306c1154b7aeccff301b8597872b82e3c806.tar.gz ingen-466f306c1154b7aeccff301b8597872b82e3c806.tar.bz2 ingen-466f306c1154b7aeccff301b8597872b82e3c806.zip |
Changed namespace names, removed almost all references to "Om"
git-svn-id: http://svn.drobilla.net/lad/ingen@97 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/Patch.cpp')
-rw-r--r-- | src/libs/engine/Patch.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/engine/Patch.cpp b/src/libs/engine/Patch.cpp index 358bc778..56006a86 100644 --- a/src/libs/engine/Patch.cpp +++ b/src/libs/engine/Patch.cpp @@ -26,11 +26,11 @@ using std::cerr; using std::cout; using std::endl; -namespace Om { +namespace Ingen { Patch::Patch(const string& path, size_t poly, Patch* parent, SampleRate srate, size_t buffer_size, size_t internal_poly) -: NodeBase(new Plugin(Plugin::Patch, "Om:Patch"), path, poly, parent, srate, buffer_size), +: NodeBase(new Plugin(Plugin::Patch, "Ingen:Patch"), path, poly, parent, srate, buffer_size), _internal_poly(internal_poly), _process_order(NULL), _process(false) @@ -38,7 +38,7 @@ Patch::Patch(const string& path, size_t poly, Patch* parent, SampleRate srate, s assert(internal_poly >= 1); //_plugin->plug_label("om_patch"); - //_plugin->name("Om Patch"); + //_plugin->name("Ingen Patch"); //std::cerr << "Creating patch " << _name << ", poly = " << poly // << ", internal poly = " << internal_poly << std::endl; @@ -367,4 +367,4 @@ Patch::set_path(const Path& new_path) } -} // namespace Om +} // namespace Ingen |