summaryrefslogtreecommitdiffstats
path: root/src/gui/NodeControlWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-13 05:31:05 +0000
committerDavid Robillard <d@drobilla.net>2009-05-13 05:31:05 +0000
commitf62ef545425476959b1335f3a303d6d5f80ca0e5 (patch)
treec6ac8347ae8c820c1cbc1cecac358ac872c20585 /src/gui/NodeControlWindow.cpp
parent5b8e8680fb6f7f6a86d8738cda817a34d53a349d (diff)
downloadingen-f62ef545425476959b1335f3a303d6d5f80ca0e5.tar.gz
ingen-f62ef545425476959b1335f3a303d6d5f80ca0e5.tar.bz2
ingen-f62ef545425476959b1335f3a303d6d5f80ca0e5.zip
Remove special request_port_value, just use request_variable with predicate ingen:value.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1996 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NodeControlWindow.cpp')
-rw-r--r--src/gui/NodeControlWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/NodeControlWindow.cpp b/src/gui/NodeControlWindow.cpp
index 2ea2a55c..0384c934 100644
--- a/src/gui/NodeControlWindow.cpp
+++ b/src/gui/NodeControlWindow.cpp
@@ -117,7 +117,7 @@ NodeControlWindow::on_show()
for (NodeModel::Ports::const_iterator i = _node->ports().begin();
i != _node->ports().end(); ++i)
if ((*i)->type().is_control() && (*i)->is_input())
- App::instance().engine()->request_port_value((*i)->path());
+ App::instance().engine()->request_variable((*i)->path(), "ingen:value");
if (_position_stored)
move(_x, _y);