Update for new Suil API.
authorDavid Robillard <d@drobilla.net>
Thu, 28 Apr 2011 01:52:51 +0000 (01:52 +0000)
committerDavid Robillard <d@drobilla.net>
Thu, 28 Apr 2011 01:52:51 +0000 (01:52 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@9437 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/lv2_plugin_ui.cc
gtk2_ardour/lv2_plugin_ui.h

index bc11d31ccecd21964aa3f2777e4bf6f9d80bdeee..8cd3382ad1744068113409a595b20f4495c42742 100644 (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
 
index 7a784e2d670a6c886f60f5fea92840e131c60978..5eacff14cc80a283693b8c5801a9c5fdb9919f15 100644 (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