diff options
author | David Robillard <d@drobilla.net> | 2006-10-04 21:45:20 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-10-04 21:45:20 +0000 |
commit | 30cb85c307b4c1273791721a782337742ade222c (patch) | |
tree | 020932d6f50ebbcd813c58f6f23e85a293587665 /src/progs/ingenuity/BreadCrumbBox.h | |
parent | 32261ba465be203f973a0e126672b8d7188ba327 (diff) | |
download | ingen-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/BreadCrumbBox.h')
-rw-r--r-- | src/progs/ingenuity/BreadCrumbBox.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/progs/ingenuity/BreadCrumbBox.h b/src/progs/ingenuity/BreadCrumbBox.h index 93af05a3..13577bb7 100644 --- a/src/progs/ingenuity/BreadCrumbBox.h +++ b/src/progs/ingenuity/BreadCrumbBox.h @@ -21,8 +21,8 @@ #include <gtkmm.h> #include <libglademm/xml.h> #include <libglademm.h> -#include "util/Path.h" -#include "util/CountedPtr.h" +#include "raul/Path.h" +#include "raul/SharedPtr.h" #include "PatchView.h" namespace Ingenuity { @@ -41,15 +41,15 @@ class BreadCrumbBox : public Gtk::HBox public: BreadCrumbBox(); - CountedPtr<PatchView> view(const Path& path); + SharedPtr<PatchView> view(const Path& path); - void build(Path path, CountedPtr<PatchView> view); + void build(Path path, SharedPtr<PatchView> view); - sigc::signal<void, const Path&, CountedPtr<PatchView> > signal_patch_selected; + sigc::signal<void, const Path&, SharedPtr<PatchView> > signal_patch_selected; private: BreadCrumb* create_crumb(const Path& path, - CountedPtr<PatchView> view = CountedPtr<PatchView>()); + SharedPtr<PatchView> view = SharedPtr<PatchView>()); void breadcrumb_clicked(BreadCrumb* crumb); |