diff options
author | David Robillard <d@drobilla.net> | 2006-07-22 19:19:05 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-07-22 19:19:05 +0000 |
commit | deca2cc89850dffc051d0a0aafc9d681af838934 (patch) | |
tree | cfca762a3b03289385bb40c17673b4483142c420 /src/plugin.c | |
parent | c7153b1a3d607108bab6cd8d6719977ffb213092 (diff) | |
download | lilv-deca2cc89850dffc051d0a0aafc9d681af838934.tar.gz lilv-deca2cc89850dffc051d0a0aafc9d681af838934.tar.bz2 lilv-deca2cc89850dffc051d0a0aafc9d681af838934.zip |
Removed data type enumeration in favour of using the URI directly
git-svn-id: http://svn.drobilla.net/lad/libslv2@100 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/plugin.c')
-rw-r--r-- | src/plugin.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugin.c b/src/plugin.c index 29083e8..b44eb56 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -90,23 +90,23 @@ bool slv2_plugin_verify(const SLV2Plugin* plugin) { // FIXME: finish this (properly) - /* + size_t num_values = 0; - struct SLV2Property* prop = slv2_plugin_get_property(plugin, "doap:name"); + struct _Property* prop = slv2_plugin_get_property(plugin, "doap:name"); if (prop) { num_values = prop->num_values; free(prop); } if (num_values < 1) return false; - +/* prop = slv2_plugin_get_property(plugin, "doap:license"); num_values = prop->num_values; free(prop); if (num_values < 1) return false; -*/ +*/ return true; } |