summaryrefslogtreecommitdiffstats
path: root/src/gui/NewSubgraphWindow.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-19 02:57:26 +0000
committerDavid Robillard <d@drobilla.net>2012-08-19 02:57:26 +0000
commitba1f169967f64b9657074fba2de803b29829345c (patch)
treeb46baed3c4d96f2129cb58686b09b2b86d86d05e /src/gui/NewSubgraphWindow.hpp
parent800c329a0b77f9044923885abe0728028eca8350 (diff)
downloadingen-ba1f169967f64b9657074fba2de803b29829345c.tar.gz
ingen-ba1f169967f64b9657074fba2de803b29829345c.tar.bz2
ingen-ba1f169967f64b9657074fba2de803b29829345c.zip
GraphObject => Node
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4722 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NewSubgraphWindow.hpp')
-rw-r--r--src/gui/NewSubgraphWindow.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/NewSubgraphWindow.hpp b/src/gui/NewSubgraphWindow.hpp
index 721a0916..4fef4831 100644
--- a/src/gui/NewSubgraphWindow.hpp
+++ b/src/gui/NewSubgraphWindow.hpp
@@ -25,7 +25,7 @@
#include "raul/SharedPtr.hpp"
-#include "ingen/GraphObject.hpp"
+#include "ingen/Node.hpp"
#include "Window.hpp"
@@ -50,14 +50,14 @@ public:
void set_graph(SharedPtr<const Client::GraphModel> graph);
void present(SharedPtr<const Client::GraphModel> graph,
- GraphObject::Properties data);
+ Node::Properties data);
private:
void name_changed();
void ok_clicked();
void cancel_clicked();
- GraphObject::Properties _initial_data;
+ Node::Properties _initial_data;
SharedPtr<const Client::GraphModel> _graph;
Gtk::Entry* _name_entry;