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/SubpatchModule.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/progs/ingenuity/SubpatchModule.h') diff --git a/src/progs/ingenuity/SubpatchModule.h b/src/progs/ingenuity/SubpatchModule.h index 6d5d3e35..9ae1bea3 100644 --- a/src/progs/ingenuity/SubpatchModule.h +++ b/src/progs/ingenuity/SubpatchModule.h @@ -21,7 +21,7 @@ #include #include #include "NodeModule.h" -#include "util/CountedPtr.h" +#include "raul/SharedPtr.h" #include "PatchModel.h" #include "PatchPortModule.h" using std::string; using std::list; @@ -47,7 +47,7 @@ class NodeControlWindow; class SubpatchModule : public NodeModule { public: - SubpatchModule(boost::shared_ptr canvas, CountedPtr controller); + SubpatchModule(boost::shared_ptr canvas, SharedPtr controller); virtual ~SubpatchModule() {} void on_double_click(GdkEventButton* ev); @@ -56,10 +56,10 @@ public: void browse_to_patch(); void menu_remove(); - CountedPtr patch() { return m_patch; } + SharedPtr patch() { return m_patch; } protected: - CountedPtr m_patch; + SharedPtr m_patch; }; -- cgit v1.2.1