Make deferred plugin stuff work with old compiler or different sigc version or whatever.

git-svn-id: svn://localhost/ardour2/branches/3.0@5878 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2009-10-23 01:00:13 +00:00
parent bcf885b4be
commit 370752bf24
7 changed files with 12 additions and 12 deletions

View file

@ -69,7 +69,7 @@ namespace ARDOUR {
class ProcessorBox : public Gtk::HBox, public PluginInterestedObject
{
public:
ProcessorBox (ARDOUR::Session&, sigc::slot<PluginSelector&> get_plugin_selector,
ProcessorBox (ARDOUR::Session&, sigc::slot<PluginSelector*> get_plugin_selector,
RouteRedirectSelection&, MixerStrip* parent, bool owner_is_mixer = false);
~ProcessorBox ();
@ -97,7 +97,7 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject
bool ab_direction;
std::vector<sigc::connection> connections;
sigc::slot<PluginSelector&> _get_plugin_selector;
sigc::slot<PluginSelector*> _get_plugin_selector;
boost::shared_ptr<ARDOUR::Processor> _processor_being_created;