From 5b280463ce220ca27c067ce33cd9af2f457f240b Mon Sep 17 00:00:00 2001 From: Len Ovens Date: Wed, 17 Oct 2018 16:25:49 -0700 Subject: [PATCH] Noop: fix white space --- libs/ardour/internal_send.cc | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/libs/ardour/internal_send.cc b/libs/ardour/internal_send.cc index 0292badefa..8b2ace2654 100644 --- a/libs/ardour/internal_send.cc +++ b/libs/ardour/internal_send.cc @@ -91,9 +91,9 @@ InternalSend::use_target (boost::shared_ptr sendto) _send_to->remove_send_from_internal_return (this); } - _send_to = sendto; + _send_to = sendto; - _send_to->add_send_to_internal_return (this); + _send_to->add_send_to_internal_return (this); mixbufs.ensure_buffers (_send_to->internal_return()->input_streams(), _session.get_block_size()); mixbufs.set_count (_send_to->internal_return()->input_streams()); @@ -104,19 +104,19 @@ InternalSend::use_target (boost::shared_ptr sendto) reset_panner (); - set_name (sendto->name()); - _send_to_id = _send_to->id(); + set_name (sendto->name()); + _send_to_id = _send_to->id(); - target_connections.drop_connections (); + target_connections.drop_connections (); - _send_to->DropReferences.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_going_away, this)); - _send_to->PropertyChanged.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_property_changed, this, _1)); - _send_to->io_changed.connect_same_thread (target_connections, boost::bind (&InternalSend::target_io_changed, this)); + _send_to->DropReferences.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_going_away, this)); + _send_to->PropertyChanged.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_property_changed, this, _1)); + _send_to->io_changed.connect_same_thread (target_connections, boost::bind (&InternalSend::target_io_changed, this)); boost::shared_ptr st_to = boost::dynamic_pointer_cast (_send_to); st_to->presentation_info().PropertyChanged.connect_same_thread (target_connections, boost::bind (&InternalSend::send_to_pi_change, this, _1)); send_to_pi_change (Properties::hidden); - return 0; + return 0; } void @@ -137,7 +137,7 @@ InternalSend::send_from_going_away () void InternalSend::send_to_going_away () { - target_connections.drop_connections (); + target_connections.drop_connections (); _send_to.reset (); _send_to_id = "0"; } @@ -280,7 +280,7 @@ InternalSend::set_block_size (pframes_t nframes) mixbufs.ensure_buffers (_send_to->internal_return()->input_streams(), nframes); } - return 0; + return 0; } void @@ -352,7 +352,7 @@ InternalSend::connect_when_legal () return 0; } - boost::shared_ptr sendto; + boost::shared_ptr sendto; if ((sendto = _session.route_by_id (_send_to_id)) == 0) { error << string_compose (_("%1 - cannot find any track/bus with the ID %2 to connect to"), display_name(), _send_to_id) << endmsg; @@ -360,7 +360,7 @@ InternalSend::connect_when_legal () return -1; } - return use_target (sendto); + return use_target (sendto); } bool