diff options
author | David Robillard <d@drobilla.net> | 2009-05-28 20:38:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-05-28 20:38:11 +0000 |
commit | 64a40ac2323cda14ecbce4e41618d6db32fd3573 (patch) | |
tree | 58559bc1ee6384f432f439fec45b29fd442a1595 /src/gui | |
parent | feb1df3476eb29fe2469bfda8726a11c6b9a4d9d (diff) | |
download | ingen-64a40ac2323cda14ecbce4e41618d6db32fd3573.tar.gz ingen-64a40ac2323cda14ecbce4e41618d6db32fd3573.tar.bz2 ingen-64a40ac2323cda14ecbce4e41618d6db32fd3573.zip |
Remove vestigial request_variable interface.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2033 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/NodeControlWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/NodeControlWindow.cpp b/src/gui/NodeControlWindow.cpp index cd381f4b..167d7255 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_variable((*i)->path(), "ingen:value"); + App::instance().engine()->request_property((*i)->path(), "ingen:value"); if (_position_stored) move(_x, _y); |