diff options
author | David Robillard <d@drobilla.net> | 2007-06-30 23:49:41 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-06-30 23:49:41 +0000 |
commit | d49e7c542187f5705fed1952dceefe61f206626a (patch) | |
tree | 60633f359e0c3a567b938d38e00ee7eb48079fe0 /slv2 | |
parent | fca9f2fbccd0c98eda64e832817bfed7af6a9dba (diff) | |
download | lilv-d49e7c542187f5705fed1952dceefe61f206626a.tar.gz lilv-d49e7c542187f5705fed1952dceefe61f206626a.tar.bz2 lilv-d49e7c542187f5705fed1952dceefe61f206626a.zip |
Aaaalright then, made it not static and put the code in the library. Stupid warnings.
git-svn-id: http://svn.drobilla.net/lad/slv2@550 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2')
-rw-r--r-- | slv2/gui.h | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -46,13 +46,8 @@ extern "C" { * * Time = O(1) */ -static const char* -slv2_gui_type_get_uri(SLV2GUIType type) -{ - // Only one for now... - assert(type == SLV2_GTK2_GUI); - return "http://ll-plugins.nongnu.org/lv2/ext/gtk2gui"; -} +const char* +slv2_gui_type_get_uri(SLV2GUIType type); /** @} */ |