summaryrefslogtreecommitdiffstats
path: root/slv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-01 06:07:06 +0000
committerDavid Robillard <d@drobilla.net>2007-07-01 06:07:06 +0000
commit560fcb0c2530da4ff2bdd4c622ef53f6743860a1 (patch)
treee9999d3c3b53e3d7189d79d3f62e2e0b65c4c747 /slv2
parentd49e7c542187f5705fed1952dceefe61f206626a (diff)
downloadlilv-560fcb0c2530da4ff2bdd4c622ef53f6743860a1.tar.gz
lilv-560fcb0c2530da4ff2bdd4c622ef53f6743860a1.tar.bz2
lilv-560fcb0c2530da4ff2bdd4c622ef53f6743860a1.zip
Fix tab/space mixing in lv2-gtk2gui.h
git-svn-id: http://svn.drobilla.net/lad/slv2@551 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2')
-rw-r--r--slv2/lv2-gtk2gui.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/slv2/lv2-gtk2gui.h b/slv2/lv2-gtk2gui.h
index fd57d28..82e236b 100644
--- a/slv2/lv2-gtk2gui.h
+++ b/slv2/lv2-gtk2gui.h
@@ -110,8 +110,8 @@ typedef void* LV2UI_Controller;
pointer of this type will be provided to the GUI bu the host in the
instantiate() function. */
typedef void (*LV2UI_Set_Control_Function)(LV2UI_Controller controller,
- uint32_t port,
- float value);
+ uint32_t port,
+ float value);
typedef struct _LV2UI_Descriptor {
@@ -149,10 +149,10 @@ typedef struct _LV2UI_Descriptor {
LV2UI_Handle (*instantiate)(const struct _LV2UI_Descriptor* descriptor,
const char* plugin_uri,
const char* bundle_path,
- LV2UI_Set_Control_Function control_function,
+ LV2UI_Set_Control_Function control_function,
LV2UI_Controller controller,
struct _GtkWidget** widget,
- const LV2_Host_Feature** features);
+ const LV2_Host_Feature** features);
/** Destroy the GUI object and the associated widget.