diff options
author | David Robillard <d@drobilla.net> | 2008-01-24 16:11:18 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-01-24 16:11:18 +0000 |
commit | 361f21b9e1f59bd602d0e1ed8b80f726605995be (patch) | |
tree | 6cd62d39f136839e1744c1b8b3ca20275d7c4d28 /slv2/pluginui.h | |
parent | 6c3ab050cfbbbd80dd795643dcf65e6c5915dec4 (diff) | |
download | lilv-361f21b9e1f59bd602d0e1ed8b80f726605995be.tar.gz lilv-361f21b9e1f59bd602d0e1ed8b80f726605995be.tar.bz2 lilv-361f21b9e1f59bd602d0e1ed8b80f726605995be.zip |
Make SLV2 UI class interface match ports.
git-svn-id: http://svn.drobilla.net/lad/slv2@1112 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/pluginui.h')
-rw-r--r-- | slv2/pluginui.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slv2/pluginui.h b/slv2/pluginui.h index 7de54aa..b01bf34 100644 --- a/slv2/pluginui.h +++ b/slv2/pluginui.h @@ -45,7 +45,7 @@ slv2_ui_get_uri(SLV2UI ui); * Time = O(1) */ SLV2Values -slv2_ui_get_types(SLV2UI ui); +slv2_ui_get_classes(SLV2UI ui); /** Check whether a plugin UI is a given type. @@ -56,7 +56,7 @@ slv2_ui_get_types(SLV2UI ui); * Time = O(1) */ bool -slv2_ui_is_type(SLV2UI ui, const char* type_uri); +slv2_ui_is_a(SLV2UI ui, const char* type_uri); /** Get the URI for a Plugin UI's bundle. |