summaryrefslogtreecommitdiffstats
path: root/src/progs/ingenuity/PatchTreeWindow.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-10-04 21:45:20 +0000
committerDavid Robillard <d@drobilla.net>2006-10-04 21:45:20 +0000
commit30cb85c307b4c1273791721a782337742ade222c (patch)
tree020932d6f50ebbcd813c58f6f23e85a293587665 /src/progs/ingenuity/PatchTreeWindow.h
parent32261ba465be203f973a0e126672b8d7188ba327 (diff)
downloadingen-30cb85c307b4c1273791721a782337742ade222c.tar.gz
ingen-30cb85c307b4c1273791721a782337742ade222c.tar.bz2
ingen-30cb85c307b4c1273791721a782337742ade222c.zip
Moved generic utility stuff to new library "raul".
git-svn-id: http://svn.drobilla.net/lad/ingen@156 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/progs/ingenuity/PatchTreeWindow.h')
-rw-r--r--src/progs/ingenuity/PatchTreeWindow.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/progs/ingenuity/PatchTreeWindow.h b/src/progs/ingenuity/PatchTreeWindow.h
index 91e68bf1..ab18d526 100644
--- a/src/progs/ingenuity/PatchTreeWindow.h
+++ b/src/progs/ingenuity/PatchTreeWindow.h
@@ -19,7 +19,7 @@
#include <gtkmm.h>
#include <libglademm.h>
-#include "util/Path.h"
+#include "raul/Path.h"
namespace Ingen { namespace Client {
class Store;
@@ -43,13 +43,13 @@ public:
void init(Store& store);
- void new_object(CountedPtr<ObjectModel> object);
+ void new_object(SharedPtr<ObjectModel> object);
void patch_enabled(const Path& path);
void patch_disabled(const Path& path);
void patch_renamed(const Path& old_path, const Path& new_path);
- void add_patch(CountedPtr<PatchModel> pm);
+ void add_patch(SharedPtr<PatchModel> pm);
void remove_patch(const Path& path);
void show_patch_menu(GdkEventButton* ev);
@@ -69,7 +69,7 @@ protected:
Gtk::TreeModelColumn<Glib::ustring> name_col;
Gtk::TreeModelColumn<bool> enabled_col;
- Gtk::TreeModelColumn<CountedPtr<PatchModel> > patch_model_col;
+ Gtk::TreeModelColumn<SharedPtr<PatchModel> > patch_model_col;
};
bool m_enable_signal;