13
0

Update for new Suil API.

git-svn-id: svn://localhost/ardour2/branches/3.0@9437 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2011-04-28 01:52:51 +00:00
parent c0a009beb9
commit e54a8f8437
2 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ using namespace ARDOUR;
using namespace PBD;
#if defined(HAVE_NEW_SLV2) && defined(HAVE_SUIL)
SuilHost LV2PluginUI::ui_host = NULL;
SuilHost* LV2PluginUI::ui_host = NULL;
SLV2Value LV2PluginUI::ui_GtkUI = NULL;
#endif

View File

@ -82,10 +82,10 @@ class LV2PluginUI : public PlugUIBase, public Gtk::VBox
static void on_external_ui_closed(void* controller);
#if defined(HAVE_NEW_SLV2) && defined(HAVE_SUIL)
static SuilHost ui_host;
static SLV2Value ui_GtkUI;
static SuilHost* ui_host;
static SLV2Value ui_GtkUI;
SuilInstance _inst;
SuilInstance* _inst;
#else
SLV2UIInstance _inst;
#endif