From 728f510e8c542db2907dcd439a9ab99d07282220 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 14 Sep 2011 22:49:22 +0000 Subject: Support lv2:sampleRate controls (mostly) correctly. Fix initial control port values (was always 0.0). Fix numeric values in control window. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3460 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/PortModel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/PortModel.cpp') diff --git a/src/client/PortModel.cpp b/src/client/PortModel.cpp index 50731ef0..be6d74a5 100644 --- a/src/client/PortModel.cpp +++ b/src/client/PortModel.cpp @@ -39,9 +39,9 @@ PortModel::supports(const Raul::URI& value_type) const } bool -PortModel::port_property(const std::string& uri) const +PortModel::port_property(const Raul::URI& uri) const { - return has_property(_uris.lv2_portProperty, Raul::URI(uri)); + return has_property(_uris.lv2_portProperty, uri); } void -- cgit v1.2.1