use new syntax for connecting to backend signals that enforces explicit connection scope, plus a few other related matters

git-svn-id: svn://localhost/ardour2/branches/3.0@6376 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2009-12-19 20:26:31 +00:00
parent 67460c2af4
commit aae367b63c
256 changed files with 1123 additions and 1113 deletions

View file

@ -36,7 +36,7 @@
#include <gtkmm2ext/pixfader.h>
#include "pbd/stateful.h"
#include "pbd/scoped_connections.h"
#include "pbd/signals.h"
#include "ardour/types.h"
#include "ardour/ardour.h"
@ -100,6 +100,8 @@ private:
Gtk::CheckButton _active;
boost::shared_ptr<ARDOUR::Processor> _processor;
Width _width;
PBD::ScopedConnection active_connection;
PBD::ScopedConnection name_connection;
};
class SendProcessorEntry : public ProcessorEntry
@ -120,7 +122,8 @@ private:
Gtk::Adjustment _adjustment;
Gtkmm2ext::HSliderController _fader;
bool _ignore_gain_change;
PBD::ScopedConnection send_gain_connection;
static Glib::RefPtr<Gdk::Pixbuf> _slider;
};