diff options
author | David Robillard <d@drobilla.net> | 2007-07-23 06:03:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-23 06:03:39 +0000 |
commit | 043e683a796e1338a8874b0e7c195292ff32b7de (patch) | |
tree | d580453b0d91ec7bdf304714ce52e9749a73db1d /src/pluginguiinstance.c | |
parent | 64b48129d10118a9fbf11aec46fa557b5d302f31 (diff) | |
download | lilv-043e683a796e1338a8874b0e7c195292ff32b7de.tar.gz lilv-043e683a796e1338a8874b0e7c195292ff32b7de.tar.bz2 lilv-043e683a796e1338a8874b0e7c195292ff32b7de.zip |
Broke API to separate input/output from type (less code repetition and SLV2 is more useful with unknown extended port types this way).
Switched enum symbol naming scheme to be more typical and future proof.
Added LV2 OSC support.
git-svn-id: http://svn.drobilla.net/lad/slv2@600 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/pluginguiinstance.c')
-rw-r--r-- | src/pluginguiinstance.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pluginguiinstance.c b/src/pluginguiinstance.c index c3a6292..c115751 100644 --- a/src/pluginguiinstance.c +++ b/src/pluginguiinstance.c @@ -40,7 +40,7 @@ slv2_plugin_gtk2_gui_instantiate(SLV2Plugin plugin, { assert(gui->type == SLV2_VALUE_GUI); - if (gui->val.gui_type_val != SLV2_GTK2_GUI) + if (gui->val.gui_type_val != SLV2_GUI_TYPE_GTK2) return NULL; struct _SLV2GUIInstance* result = NULL; |