summaryrefslogtreecommitdiffstats
path: root/src/gui/NodeModule.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-12-06 21:01:38 +0000
committerDavid Robillard <d@drobilla.net>2011-12-06 21:01:38 +0000
commitfd04fe7efcf0434a3c6a35fd2a65c775fb383bd0 (patch)
tree4c5b8791f19bcda81060077f2880b30ae4cae4b7 /src/gui/NodeModule.cpp
parenta5f256cf923d165afd273914a13726d745a59cbc (diff)
downloadingen-fd04fe7efcf0434a3c6a35fd2a65c775fb383bd0.tar.gz
ingen-fd04fe7efcf0434a3c6a35fd2a65c775fb383bd0.tar.bz2
ingen-fd04fe7efcf0434a3c6a35fd2a65c775fb383bd0.zip
FlowCanvas's successor is hereby dubbed Ganv.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3820 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NodeModule.cpp')
-rw-r--r--src/gui/NodeModule.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/NodeModule.cpp b/src/gui/NodeModule.cpp
index 497e6a0a..d03119d6 100644
--- a/src/gui/NodeModule.cpp
+++ b/src/gui/NodeModule.cpp
@@ -45,7 +45,7 @@ namespace GUI {
NodeModule::NodeModule(PatchCanvas& canvas,
SharedPtr<const NodeModel> node)
- : FlowCanvas::Module(canvas, node->path().symbol(), 0, 0, true, canvas.show_port_names())
+ : Ganv::Module(canvas, node->path().symbol(), 0, 0, true, canvas.show_port_names())
, _node(node)
, _gui_widget(NULL)
, _gui_window(NULL)
@@ -214,7 +214,7 @@ NodeModule::embed_gui(bool embed)
container->set_name("ingen_embedded_node_gui_container");
container->set_border_width(2.0);
container->add(*_gui_widget);
- FlowCanvas::Module::embed(container);
+ Ganv::Module::embed(container);
} else {
error << "Failed to create LV2 UI" << endl;
}
@@ -230,7 +230,7 @@ NodeModule::embed_gui(bool embed)
} else { // un-embed
- FlowCanvas::Module::embed(NULL);
+ Ganv::Module::embed(NULL);
_plugin_ui.reset();
for (NodeModel::Ports::const_iterator p = _node->ports().begin();