Hopefully fix compilation without Suil.

git-svn-id: svn://localhost/ardour2/branches/3.0@11574 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2012-03-01 19:24:13 +00:00
parent 683455c02e
commit 1464bbfaa3

View File

@ -333,9 +333,9 @@ LV2Plugin::init(void* c_plugin, framecnt_t rate)
// Look for Gtk native UI
LILV_FOREACH(uis, i, uis) {
const LilvUI* ui = lilv_uis_get(uis, i);
if (lilv_ui_is_a(ui, _world.gtk_gui)) {
if (lilv_ui_is_a(ui, _world.ui_GtkUI)) {
_impl->ui = ui;
_impl->ui_type = _world.gtk_gui;
_impl->ui_type = _world.ui_GtkUI;
break;
}
}