summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-12 23:47:14 +0000
committerDavid Robillard <d@drobilla.net>2012-04-12 23:47:14 +0000
commitf74b7279cf959a3b8f943e89db350af432ae78a8 (patch)
tree607d19ca9015dd7c02b5b9d00b0ea7c4becb1fe4 /src/gui
parentb9ee86cf97f9ba8f6139c83f57b8d5848e7f90e4 (diff)
downloadingen-f74b7279cf959a3b8f943e89db350af432ae78a8.tar.gz
ingen-f74b7279cf959a3b8f943e89db350af432ae78a8.tar.bz2
ingen-f74b7279cf959a3b8f943e89db350af432ae78a8.zip
Use URI defines from LV2 headers where possible.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4175 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/Port.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp
index a6b72ace..7631837a 100644
--- a/src/gui/Port.cpp
+++ b/src/gui/Port.cpp
@@ -294,8 +294,6 @@ Port::property_changed(const URI& key, const Atom& value)
} else if (key == uris.lv2_portProperty) {
if (value == uris.lv2_toggled)
set_control_is_toggle(true);
- } else if (key == uris.ctx_context) {
- Raul::info << "TODO: Visual indication of port context?" << std::endl;
} else if (key == uris.lv2_name) {
if (value.type() == uris.forge.String
&& _app.configuration()->name_style() == Configuration::HUMAN) {
@@ -313,9 +311,6 @@ Port::dash()
if (!pm)
return NULL;
- if (pm->has_context(uris.ctx_audioContext))
- return NULL;
-
if (!_dash) {
_dash = new ArtVpathDash();
_dash->n_dash = 2;