diff options
author | David Robillard <d@drobilla.net> | 2007-09-22 19:43:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-09-22 19:43:11 +0000 |
commit | 996f9015fe055ca63823110175593317ac20c80f (patch) | |
tree | 526d4bb1c4dd2ed8c5a05dcacabe78e1d000bd22 /slv2/value.h | |
parent | 106b0784b8c8347bbbebcedc421030effdc26fd0 (diff) | |
download | lilv-996f9015fe055ca63823110175593317ac20c80f.tar.gz lilv-996f9015fe055ca63823110175593317ac20c80f.tar.bz2 lilv-996f9015fe055ca63823110175593317ac20c80f.zip |
LV2 UI extension updates.
LV2 GUI support in ingen.
git-svn-id: http://svn.drobilla.net/lad/slv2@763 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/value.h')
-rw-r--r-- | slv2/value.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/slv2/value.h b/slv2/value.h index f2db361..47bb1ff 100644 --- a/slv2/value.h +++ b/slv2/value.h @@ -74,7 +74,7 @@ slv2_value_is_uri(SLV2Value value); /** Return this value as a URI string, e.g. "http://example.org/foo". * * Valid to call only if slv2_value_is_uri(\a value) or - * slv2_value_is_gui(\a value) returns true. + * slv2_value_is_ui(\a value) returns true. * Returned value is owned by \a value and must not be freed by caller. * * Time = O(1) @@ -175,24 +175,24 @@ slv2_value_as_int(SLV2Value value); /** Return whether this value is a GUI (URI and type). * * If this returns true, slv2_value_as_uri will return the URI of the GUI, - * and slv2_value_as_gui_type will return the SLV2GUIType (which can be + * and slv2_value_as_ui_type will return the SLV2UIType (which can be * used to find the URI of the corresponding GUI spec itself, with - * slv2_gui_type_get_uri). + * slv2_ui_type_get_uri). * * Time = O(1) */ bool -slv2_value_is_gui(SLV2Value value); +slv2_value_is_ui(SLV2Value value); -/** Return \a value as an SLV2GUIType. +/** Return \a value as an SLV2UIType. * - * Valid to call only if slv2_value_is_gui(\a value) returns true. + * Valid to call only if slv2_value_is_ui(\a value) returns true. * * Time = O(1) */ -SLV2GUIType -slv2_value_as_gui_type(SLV2Value value); +SLV2UIType +slv2_value_as_ui_type(SLV2Value value); /** @} */ |