X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Faudio_track.cc;h=bc2f0d9feba60c79aa43a6a34d873f278581d482;hb=118816dfe393cc671d29352c3ed4741b4f261088;hp=84302b055f0c4575b2b828568e53a309bf5725d9;hpb=b6855bc209c062daa961e0ef4227621a43bcd332;p=ardour.git diff --git a/libs/ardour/audio_track.cc b/libs/ardour/audio_track.cc index 84302b055f..bc2f0d9feb 100644 --- a/libs/ardour/audio_track.cc +++ b/libs/ardour/audio_track.cc @@ -135,7 +135,7 @@ AudioTrack::deprecated_use_diskstream_connections () } if ((prop = node.property ("input-connection")) != 0) { - Bundle* c = _session.bundle_by_name (prop->value()); + boost::shared_ptr c = _session.bundle_by_name (prop->value()); if (c == 0) { error << string_compose(_("Unknown bundle \"%1\" listed for input of %2"), prop->value(), _name) << endmsg; @@ -150,7 +150,7 @@ AudioTrack::deprecated_use_diskstream_connections () } } - use_input_bundle(*c, this); + connect_input_ports_to_bundle (c, this); } else if ((prop = node.property ("inputs")) != 0) { if (set_inputs (prop->value())) {