mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
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:
parent
67460c2af4
commit
aae367b63c
256 changed files with 1123 additions and 1113 deletions
|
|
@ -254,7 +254,7 @@ PortMatrixBody::setup ()
|
|||
PortGroup::BundleList r = _matrix->visible_rows()->bundles ();
|
||||
for (PortGroup::BundleList::iterator i = r.begin(); i != r.end(); ++i) {
|
||||
|
||||
_bundle_connections.add_connection ((*i)->bundle->Changed.connect (boost::bind (&PortMatrixBody::rebuild_and_draw_row_labels, this)));
|
||||
(*i)->bundle->Changed.connect (_bundle_connections, boost::bind (&PortMatrixBody::rebuild_and_draw_row_labels, this));
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -262,7 +262,7 @@ PortMatrixBody::setup ()
|
|||
if (_matrix->visible_columns()) {
|
||||
PortGroup::BundleList c = _matrix->visible_columns()->bundles ();
|
||||
for (PortGroup::BundleList::iterator i = c.begin(); i != c.end(); ++i) {
|
||||
_bundle_connections.add_connection ((*i)->bundle->Changed.connect (boost::bind (&PortMatrixBody::rebuild_and_draw_column_labels, this)));
|
||||
(*i)->bundle->Changed.connect (_bundle_connections, boost::bind (&PortMatrixBody::rebuild_and_draw_column_labels, this));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue