diff options
author | David Robillard <d@drobilla.net> | 2015-09-29 13:51:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-09-29 13:51:22 +0000 |
commit | dc6bde36430e1e2da21b3b81f691ea6f31d672be (patch) | |
tree | b382db493db7a7b066fd4c5a603ba23f9de11057 /src/gui/NodeModule.cpp | |
parent | 3368d57a40527bf1151b5a7d1edcba60d0560539 (diff) | |
download | ingen-dc6bde36430e1e2da21b3b81f691ea6f31d672be.tar.gz ingen-dc6bde36430e1e2da21b3b81f691ea6f31d672be.tar.bz2 ingen-dc6bde36430e1e2da21b3b81f691ea6f31d672be.zip |
Fix more URI conversion issues.
Fixes #1088.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5733 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NodeModule.cpp')
-rw-r--r-- | src/gui/NodeModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/NodeModule.cpp b/src/gui/NodeModule.cpp index 86d0c8e6..ae9a997d 100644 --- a/src/gui/NodeModule.cpp +++ b/src/gui/NodeModule.cpp @@ -175,7 +175,7 @@ NodeModule::port_activity(uint32_t index, const Atom& value) return; } - if (_block->get_port(index)->is_a(Raul::URI(LV2_ATOM__AtomPort))) { + if (_block->get_port(index)->is_a(uris.atom_AtomPort)) { _plugin_ui->port_event(index, lv2_atom_total_size(value.atom()), uris.atom_eventTransfer, |