summaryrefslogtreecommitdiffstats
path: root/src/progs/ingenuity/PatchView.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-09-15 01:20:54 +0000
committerDavid Robillard <d@drobilla.net>2006-09-15 01:20:54 +0000
commita135a764751a356ac34c2f35f8ce2c009872f1fd (patch)
treefd70a03cad997bbaeac6bed50c5b17be442aad9e /src/progs/ingenuity/PatchView.h
parentf9f760893e4fa1ff850becf7d98bd4c6af8b8d73 (diff)
downloadingen-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/PatchView.h')
-rw-r--r--src/progs/ingenuity/PatchView.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/progs/ingenuity/PatchView.h b/src/progs/ingenuity/PatchView.h
index a6484b97..d0c9c4c4 100644
--- a/src/progs/ingenuity/PatchView.h
+++ b/src/progs/ingenuity/PatchView.h
@@ -36,7 +36,7 @@ using namespace Ingen::Client;
namespace Ingenuity {
-class OmFlowCanvas;
+class PatchCanvas;
class LoadPluginWindow;
class NewSubpatchWindow;
class LoadSubpatchWindow;
@@ -57,7 +57,7 @@ public:
PatchView(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& glade_xml);
~PatchView();
- OmFlowCanvas* canvas() const { return _canvas; }
+ PatchCanvas* canvas() const { return _canvas; }
CountedPtr<PatchModel> patch() const { return _patch; }
Gtk::Viewport* breadcrumb_container() const { return _breadcrumb_container; }
@@ -75,7 +75,7 @@ private:
void zoom_full();
CountedPtr<PatchModel> _patch;
- OmFlowCanvas* _canvas;
+ PatchCanvas* _canvas;
Gtk::ScrolledWindow* _canvas_scrolledwindow;