diff options
author | David Robillard <d@drobilla.net> | 2007-07-01 20:08:05 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-01 20:08:05 +0000 |
commit | 87a7c71254f292939410b7fe376c80f4d8cd815e (patch) | |
tree | f501dd98b09b4d65ec518affc763faa3f958bd4c /src/slv2_internal.h | |
parent | e67a923c73c26dfd335cfb325511c831996952ab (diff) | |
download | lilv-87a7c71254f292939410b7fe376c80f4d8cd815e.tar.gz lilv-87a7c71254f292939410b7fe376c80f4d8cd815e.tar.bz2 lilv-87a7c71254f292939410b7fe376c80f4d8cd815e.zip |
Removed redundant GUI loading stub (I'm an idiot).
Cleaned up messy GUI code.
Added _gtk2 to gtk2 specific GUI function names (is a nicer more abstract way than this possible?).
Fixed instantiation bugs caused by last commit's bundle URI stuff.
git-svn-id: http://svn.drobilla.net/lad/slv2@554 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r-- | src/slv2_internal.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h index ca1e002..2694b5d 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -99,11 +99,11 @@ struct _InstanceImpl { /* ********* GUI Instance ********* */ -struct _GUIInstanceImpl { - void* lib_handle; - const LV2UI_Descriptor* lv2ui_descriptor; - LV2UI_Handle lv2ui_handle; - void* widget; +struct _SLV2GUIInstanceImpl { + void* lib_handle; + const LV2UI_Descriptor* lv2ui_descriptor; + LV2UI_Handle lv2ui_handle; + void* widget; }; |