patch-gtk2_ardour_au_pluginui_mm 549 B

12345678910111213141516
  1. $OpenBSD: patch-gtk2_ardour_au_pluginui_mm,v 1.1 2016/03/20 11:58:32 ajacoutot Exp $
  2. Fix build with libsigc++ >=2.8.0
  3. --- gtk2_ardour/au_pluginui.mm.orig Sun Mar 20 11:13:47 2016
  4. +++ gtk2_ardour/au_pluginui.mm Sun Mar 20 11:14:52 2016
  5. @@ -196,7 +196,7 @@ AUPluginUI::AUPluginUI (boost::shared_ptr<PluginInsert
  6. create_cocoa_view ();
  7. }
  8. - low_box.signal_realize().connect (mem_fun (this, &AUPluginUI::lower_box_realized));
  9. + low_box.signal_realize().connect (mem_fun (*this, &AUPluginUI::lower_box_realized));
  10. }
  11. AUPluginUI::~AUPluginUI ()