diff options
author | David Robillard <d@drobilla.net> | 2006-09-15 01:20:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-09-15 01:20:54 +0000 |
commit | a135a764751a356ac34c2f35f8ce2c009872f1fd (patch) | |
tree | fd70a03cad997bbaeac6bed50c5b17be442aad9e /src/progs/ingenuity/SubpatchModule.cpp | |
parent | f9f760893e4fa1ff850becf7d98bd4c6af8b8d73 (diff) | |
download | ingen-a135a764751a356ac34c2f35f8ce2c009872f1fd.tar.gz ingen-a135a764751a356ac34c2f35f8ce2c009872f1fd.tar.bz2 ingen-a135a764751a356ac34c2f35f8ce2c009872f1fd.zip |
Fixed FlowCanvas #include directives (to include FLOWCANVAS prefix).
Renamed classes/files in Ingenuity to make more sense (and kill "Om").
Patch port fixes.
git-svn-id: http://svn.drobilla.net/lad/ingen@136 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/progs/ingenuity/SubpatchModule.cpp')
-rw-r--r-- | src/progs/ingenuity/SubpatchModule.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/progs/ingenuity/SubpatchModule.cpp b/src/progs/ingenuity/SubpatchModule.cpp index 47465b09..585ccee3 100644 --- a/src/progs/ingenuity/SubpatchModule.cpp +++ b/src/progs/ingenuity/SubpatchModule.cpp @@ -19,20 +19,20 @@ #include <iostream> #include "App.h" #include "ModelEngineInterface.h" -#include "OmModule.h" +#include "NodeModule.h" #include "NodeControlWindow.h" #include "PatchModel.h" #include "PatchWindow.h" -#include "OmFlowCanvas.h" -#include "OmPort.h" +#include "PatchCanvas.h" +#include "Port.h" #include "WindowFactory.h" using std::cerr; using std::cout; using std::endl; namespace Ingenuity { -SubpatchModule::SubpatchModule(OmFlowCanvas* canvas, CountedPtr<PatchModel> patch) -: OmModule(canvas, patch), +SubpatchModule::SubpatchModule(PatchCanvas* canvas, CountedPtr<PatchModel> patch) +: NodeModule(canvas, patch), m_patch(patch) { assert(canvas); |