From 30cb85c307b4c1273791721a782337742ade222c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 4 Oct 2006 21:45:20 +0000 Subject: Moved generic utility stuff to new library "raul". git-svn-id: http://svn.drobilla.net/lad/ingen@156 a436a847-0d15-0410-975c-d299462d15a1 --- src/progs/ingenuity/NodeModule.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/progs/ingenuity/NodeModule.cpp') diff --git a/src/progs/ingenuity/NodeModule.cpp b/src/progs/ingenuity/NodeModule.cpp index d9d91193..73b87b5b 100644 --- a/src/progs/ingenuity/NodeModule.cpp +++ b/src/progs/ingenuity/NodeModule.cpp @@ -16,7 +16,7 @@ #include "NodeModule.h" #include -#include "util/Atom.h" +#include "raul/Atom.h" #include "App.h" #include "ModelEngineInterface.h" #include "PatchCanvas.h" @@ -31,7 +31,7 @@ namespace Ingenuity { -NodeModule::NodeModule(boost::shared_ptr canvas, CountedPtr node) +NodeModule::NodeModule(boost::shared_ptr canvas, SharedPtr node) : LibFlowCanvas::Module(canvas, node->path().name()), m_node(node), m_menu(node) @@ -49,7 +49,7 @@ NodeModule::NodeModule(boost::shared_ptr canvas, CountedPtr -NodeModule::create(boost::shared_ptr canvas, CountedPtr node) +NodeModule::create(boost::shared_ptr canvas, SharedPtr node) { boost::shared_ptr ret = boost::shared_ptr( new NodeModule(canvas, node)); @@ -67,7 +67,7 @@ NodeModule::create(boost::shared_ptr canvas, CountedPtr void -NodeModule::add_port(CountedPtr port, bool resize_to_fit) +NodeModule::add_port(SharedPtr port, bool resize_to_fit) { Module::add_port(boost::shared_ptr(new Port(shared_from_this(), port))); if (resize_to_fit) -- cgit v1.2.1