summaryrefslogtreecommitdiffstats
path: root/src/slv2_internal.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-10-03 22:21:16 +0000
committerDavid Robillard <d@drobilla.net>2007-10-03 22:21:16 +0000
commit47c8ed163b98b307fa4f7412e59760ccff8e630f (patch)
treeceae86f8a9010aceb1cdd73ee791e1573d21dc29 /src/slv2_internal.h
parent26eede34411b65b484970b2e3524ff7419f58305 (diff)
downloadlilv-47c8ed163b98b307fa4f7412e59760ccff8e630f.tar.gz
lilv-47c8ed163b98b307fa4f7412e59760ccff8e630f.tar.bz2
lilv-47c8ed163b98b307fa4f7412e59760ccff8e630f.zip
Fix Plugin class related bugs.
git-svn-id: http://svn.drobilla.net/lad/slv2@814 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r--src/slv2_internal.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h
index 6aba9de..2f66670 100644
--- a/src/slv2_internal.h
+++ b/src/slv2_internal.h
@@ -112,8 +112,8 @@ struct _SLV2UIInstanceImpl {
struct _SLV2PluginClass {
struct _SLV2World* world;
- char* parent_uri;
- char* uri;
+ librdf_uri* parent_uri;
+ librdf_uri* uri;
char* label;
};
@@ -141,6 +141,7 @@ struct _SLV2World {
librdf_storage* storage;
librdf_model* model;
librdf_parser* parser;
+ SLV2PluginClass lv2_plugin_class;
SLV2PluginClasses plugin_classes;
SLV2Plugins plugins;
librdf_node* lv2_specification_node;