mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Update GUI to use new IO PortSet API (2/2)
This commit is contained in:
parent
2e23ec4422
commit
1f368900e3
5 changed files with 27 additions and 24 deletions
|
|
@ -636,8 +636,8 @@ ProcessorEntry::name (Width w) const
|
|||
|
||||
if (send->remove_on_disconnect ()) {
|
||||
// assume it's a sidechain, find pretty name of connected port(s)
|
||||
PortSet& ps (send->output ()->ports ());
|
||||
for (PortSet::iterator i = ps.begin (); i != ps.end () && pretty_ok; ++i) {
|
||||
shared_ptr<PortSet const> ps (send->output ()->ports ());
|
||||
for (auto i = ps->begin (); i != ps->end () && pretty_ok; ++i) {
|
||||
vector<string> connections;
|
||||
if (i->get_connections (connections)) {
|
||||
vector<string>::const_iterator ci;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue