From e54a8f84371a618dcaceaa27f019f5c026070908 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 28 Apr 2011 01:52:51 +0000 Subject: [PATCH] Update for new Suil API. git-svn-id: svn://localhost/ardour2/branches/3.0@9437 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/lv2_plugin_ui.cc | 2 +- gtk2_ardour/lv2_plugin_ui.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk2_ardour/lv2_plugin_ui.cc b/gtk2_ardour/lv2_plugin_ui.cc index bc11d31cce..8cd3382ad1 100644 --- a/gtk2_ardour/lv2_plugin_ui.cc +++ b/gtk2_ardour/lv2_plugin_ui.cc @@ -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 diff --git a/gtk2_ardour/lv2_plugin_ui.h b/gtk2_ardour/lv2_plugin_ui.h index 7a784e2d67..5eacff14cc 100644 --- a/gtk2_ardour/lv2_plugin_ui.h +++ b/gtk2_ardour/lv2_plugin_ui.h @@ -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